Add VSCode launch config for node server

Used for node debugging within VSCode
This commit is contained in:
RndName 2022-03-17 13:18:04 +01:00
parent 4a666705c4
commit c5918d5531
No known key found for this signature in database
GPG Key ID: 5EF516FD9537F7C0

13
.vscode/launch.json vendored
View File

@ -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",