From d3c1e8603ac7366bc49fcc34f7b024a2a4ae5ada Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Fri, 12 Feb 2021 21:27:56 +0100 Subject: [PATCH] Improve vscode debug setup. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .vscode/launch.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 } ] -- 2.34.1