X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=e8114e91ee9ddd1d6edd267ae445b675318045c0;hb=073bd0984b486270c4537353b7e96b7111adcbb3;hp=8c879c6e4f77d876ccfbf85511fcdd93db9dbf85;hpb=26a2f9b564a6edfddc776890f52d48378bafde48;p=e-mobility-charging-stations-simulator.git diff --git a/.vscode/launch.json b/.vscode/launch.json index 8c879c6e..e8114e91 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,17 +7,22 @@ { "type": "pwa-node", "request": "launch", - "name": "Debug Program via npm", + "name": "Debug Simulator via npm", "cwd": "${workspaceFolder}", "preLaunchTask": "Build", "runtimeExecutable": "npm", - "runtimeArgs": [ - "run-script", - "start:debug" - ], - "skipFiles": [ - "/**" - ], + "runtimeArgs": ["run-script", "start:debug"], + "skipFiles": ["/**"], + "stopOnEntry": true + }, + { + "type": "pwa-node", + "request": "launch", + "name": "Debug Simulator Development Build via npm", + "cwd": "${workspaceFolder}", + "runtimeExecutable": "npm", + "runtimeArgs": ["run-script", "start:dev:debug"], + "skipFiles": ["/**"], "stopOnEntry": true } ]