diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..caf4a9d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,16 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Launch via NPM", + "console": "integratedTerminal", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "run", + "start" + ], + } + ] +}