📦 Chore(custom): update vscode setting

This commit is contained in:
Kuingsmile
2026-06-11 02:22:23 -07:00
parent c35a32d416
commit 6bbc08fba7
9 changed files with 272 additions and 96 deletions
+16 -7
View File
@@ -5,23 +5,31 @@
"name": "Debug Main Process",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite",
"cwd": "${workspaceFolder}",
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-vite",
"windows": {
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite.cmd"
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron-vite.cmd"
},
"runtimeArgs": ["--sourcemap"],
"runtimeArgs": ["dev", "--sourcemap"],
"env": {
"REMOTE_DEBUGGING_PORT": "9222"
}
},
"console": "integratedTerminal",
"outputCapture": "std",
"autoAttachChildProcesses": true,
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"],
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"]
},
{
"name": "Debug Renderer Process",
"port": 9222,
"request": "attach",
"type": "chrome",
"request": "attach",
"port": 9222,
"webRoot": "${workspaceFolder}/src/renderer",
"sourceMaps": true,
"timeout": 60000,
"skipFiles": ["${workspaceFolder}/node_modules/**"],
"resolveSourceMapLocations": ["${workspaceFolder}/**", "!**/node_modules/**"],
"presentation": {
"hidden": true
}
@@ -31,6 +39,7 @@
{
"name": "Debug All",
"configurations": ["Debug Main Process", "Debug Renderer Process"],
"stopAll": true,
"presentation": {
"order": 1
}