From 0cbb7ba1452e4337a283fe10e3e93ad496990e6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=91cze=20Bence?= Date: Fri, 19 Mar 2021 22:54:44 +0100 Subject: [PATCH] MAPG-203 add debugger config for NodeJS --- .vscode/launch.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index eafbd3f..aa7ba88 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,6 +9,14 @@ "pathMappings": { "/var/www/mapguesser": "${workspaceRoot}", } + }, + { + "name": "Listen for NodeJS Inspector in Docker", + "type": "node", + "request": "attach", + "port": 9229, + "localRoot": "${workspaceFolder}", + "remoteRoot": "/var/www/mapguesser" } ] }