diff options
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/launch.json | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..35637e04 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,13 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "name": "Launch server.js via nodemon", + "type": "node", + "request": "run", + "cwd": "${workspaceRoot}", + "runtimeExecutable": "start", + "runtimeArgs": [ + "--debug=5858" + ] +} \ No newline at end of file |