add vscode launch configuration

pull/159/head
dm 2021-02-06 00:22:36 +01:00
parent 96e9b82fbb
commit c1a3700bae
1 changed files with 14 additions and 0 deletions

14
.vscode/launch.json vendored 100644
View File

@ -0,0 +1,14 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Nodemon",
"runtimeExecutable": "${workspaceFolder}/node_modules/nodemon/bin/nodemon.js",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/spacedeck.js",
"cwd": "${workspaceFolder}"
}
]
}