From c5918d553192f8375bb06f99be0f3024694a90ff Mon Sep 17 00:00:00 2001 From: RndName Date: Thu, 17 Mar 2022 13:18:04 +0100 Subject: [PATCH] Add VSCode launch config for node server Used for node debugging within VSCode --- .vscode/launch.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 612dad0f..f4113d81 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -28,6 +28,19 @@ "args": ["--new-map", "--dev"], "preLaunchTask": "Prepare Environment" }, + { + "name": "Node: Development Server", + "type": "node", + "request": "launch", + "cwd": "${workspaceRoot}\\client", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run", "start" + ], + "env": { + "BROWSER": "none" + }, + }, { "name": "Python: Make Release", "type": "python",