X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=.vscode%2Flaunch.json;h=5c8aa82b4f96dcd045bf6d9fc96aa11a2422d5d1;hb=0f16a6625f6ec995565a7a8de7ff08808eeb5c86;hp=8c879c6e4f77d876ccfbf85511fcdd93db9dbf85;hpb=26a2f9b564a6edfddc776890f52d48378bafde48;p=e-mobility-charging-stations-simulator.git diff --git a/.vscode/launch.json b/.vscode/launch.json index 8c879c6e..5c8aa82b 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -7,7 +7,7 @@ { "type": "pwa-node", "request": "launch", - "name": "Debug Program via npm", + "name": "Debug Simulator via npm", "cwd": "${workspaceFolder}", "preLaunchTask": "Build", "runtimeExecutable": "npm", @@ -19,6 +19,21 @@ "/**" ], "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 } ] }