From: Jérôme Benoit Date: Fri, 12 Feb 2021 20:27:56 +0000 (+0100) Subject: Improve vscode debug setup. X-Git-Tag: v1.0.1-0~104^2~11 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=d3c1e8603ac7366bc49fcc34f7b024a2a4ae5ada;p=e-mobility-charging-stations-simulator.git Improve vscode debug setup. Signed-off-by: Jérôme Benoit --- diff --git a/.vscode/launch.json b/.vscode/launch.json index 5bdb6a1d..046c8246 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -5,7 +5,7 @@ "version": "0.2.0", "configurations": [ { - "type": "node", + "type": "pwa-node", "request": "launch", "name": "Debug Program via npm", "cwd": "${workspaceFolder}", @@ -14,7 +14,9 @@ "run-script", "start:dev:debug" ], - "port": 9229, + "skipFiles": [ + "/**" + ], "stopOnEntry": true } ]