You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
915 B
39 lines
915 B
{ |
|
"version": "0.2.0", |
|
"configurations": [ |
|
{ |
|
"name": "Debug Main Process", |
|
"type": "node", |
|
"request": "launch", |
|
"cwd": "${workspaceRoot}", |
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite", |
|
"windows": { |
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/electron-vite.cmd" |
|
}, |
|
"runtimeArgs": ["--sourcemap"], |
|
"env": { |
|
"REMOTE_DEBUGGING_PORT": "9222" |
|
} |
|
}, |
|
{ |
|
"name": "Debug Renderer Process", |
|
"port": 9222, |
|
"request": "attach", |
|
"type": "chrome", |
|
"webRoot": "${workspaceFolder}/src/renderer", |
|
"timeout": 60000, |
|
"presentation": { |
|
"hidden": true |
|
} |
|
} |
|
], |
|
"compounds": [ |
|
{ |
|
"name": "Debug All", |
|
"configurations": ["Debug Main Process", "Debug Renderer Process"], |
|
"presentation": { |
|
"order": 1 |
|
} |
|
} |
|
] |
|
}
|
|
|