X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=d89584673667e4760be43992f61254975890d798;hb=cdbdcaebf6bf64acd95020ab1028a16a53f8308b;hp=5bdb6a1d003d3dc4bf8945d3e4f7b0992a65c731;hpb=44b5e61d0ea44bef1601b77805cc6360363f88db;p=e-mobility-charging-stations-simulator.git diff --git a/.vscode/launch.json b/.vscode/launch.json index 5bdb6a1d..d8958467 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,14 +7,22 @@ { "type": "node", "request": "launch", - "name": "Debug Program via npm", + "name": "Debug Simulator via npm", "cwd": "${workspaceFolder}", + "preLaunchTask": "Build", "runtimeExecutable": "npm", - "runtimeArgs": [ - "run-script", - "start:dev:debug" - ], - "port": 9229, + "runtimeArgs": ["run-script", "start:debug"], + "skipFiles": ["/**"], + "stopOnEntry": true + }, + { + "type": "node", + "request": "launch", + "name": "Debug Simulator Development Build via npm", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "npm", + "runtimeArgs": ["run-script", "start:dev:debug"], + "skipFiles": ["/**"], "stopOnEntry": true } ]