diff --git a/.vscode/launch.json b/.vscode/launch.json index 06947329b1..dfba3761c0 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -14,7 +14,7 @@ "runtimeExecutable": "npm", "runtimeArgs": [ "run", - "test-debug-package", + "test-debug-package" ], "args": [ "${file}" @@ -26,7 +26,24 @@ "type": "node", "request": "attach", "name": "electron", - "port": 5567, + "port": 5567 }, + { + "type": "node", + "request": "launch", + "name": "dev-debug", + "port": 5566, + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run", + "dev-debug" + ] + } + ], + "compounds": [ + { + "name": "dev-debug w/ electron", + "configurations": ["dev-debug", "electron"] + } ] }