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.
32 lines
758 B
32 lines
758 B
{ |
|
"version": "0.2.0", |
|
"compounds": [ |
|
{ |
|
"name": "Main + renderer", |
|
"configurations": ["Main", "Renderer"], |
|
"stopAll": true |
|
} |
|
], |
|
"configurations": [ |
|
{ |
|
"name": "Renderer", |
|
"port": 9222, |
|
"request": "attach", |
|
"type": "chrome", |
|
"webRoot": "${workspaceFolder}" |
|
}, |
|
{ |
|
"name": "Main", |
|
"type": "node", |
|
"request": "launch", |
|
"cwd": "${workspaceFolder}", |
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron", |
|
"windows": { |
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd" |
|
}, |
|
"args": [".", "--remote-debugging-port=9222"], |
|
"outputCapture": "std", |
|
"console": "integratedTerminal" |
|
} |
|
] |
|
} |