X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.vscode%2Flaunch.json;h=e8114e91ee9ddd1d6edd267ae445b675318045c0;hb=0f3d5941398b0cada28c2093110868f4d3c70266;hp=4f915714861392de05cf95b92e1a5cb5b05b7950;hpb=8439338184af0caa1b8402d71f4c0aaa131f8ef1;p=e-mobility-charging-stations-simulator.git diff --git a/.vscode/launch.json b/.vscode/launch.json index 4f915714..e8114e91 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,20 +1,29 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "node", - "request": "launch", - "name": "Launch Program via npm", - "cwd": "${workspaceFolder}", - "runtimeExecutable": "npm", - "runtimeArgs": [ - "run-script", "start:debug" - ], - "port": 9229, - "stopOnEntry": true - } - ] + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "pwa-node", + "request": "launch", + "name": "Debug Simulator via npm", + "cwd": "${workspaceFolder}", + "preLaunchTask": "Build", + "runtimeExecutable": "npm", + "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 + } + ] }