X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=d89584673667e4760be43992f61254975890d798;hb=6c85bb3b27a7e4381b9cd21cbd9c13921e06200a;hp=5c8aa82b4f96dcd045bf6d9fc96aa11a2422d5d1;hpb=05745045efc825738ba9ba4b30d4d4ec932a5dd3;p=e-mobility-charging-stations-simulator.git diff --git a/.vscode/launch.json b/.vscode/launch.json index 5c8aa82b..d8958467 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,34 +5,24 @@ "version": "0.2.0", "configurations": [ { - "type": "pwa-node", + "type": "node", "request": "launch", "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", + "type": "node", "request": "launch", "name": "Debug Simulator Development Build via npm", "cwd": "${workspaceFolder}", "runtimeExecutable": "npm", - "runtimeArgs": [ - "run-script", - "start:dev:debug" - ], - "skipFiles": [ - "/**" - ], + "runtimeArgs": ["run-script", "start:dev:debug"], + "skipFiles": ["/**"], "stopOnEntry": true } ]