X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=5c8aa82b4f96dcd045bf6d9fc96aa11a2422d5d1;hb=abbd09af37b3815bb04f2ef32b91ecb89ba2e1af;hp=8c879c6e4f77d876ccfbf85511fcdd93db9dbf85;hpb=e87cf4b3b83ae397f7451b414605532b968cfc7b;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 } ] }