From 0a6801e01aad2ad07c1c11c0dab051f6707c06ec Mon Sep 17 00:00:00 2001 From: velvettear Date: Thu, 24 Mar 2022 10:41:50 +0100 Subject: [PATCH] added .vscode --- .gitignore | 3 +-- .vscode/launch.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 72c2be7..1ca9571 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,2 @@ -.vscode/ node_modules/ -npm-debug.log \ No newline at end of file +npm-debug.log diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..48785b1 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,28 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "node", + "runtimeVersion": "8", + "request": "launch", + "name": "blinky", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/blinky.js" + }, + { + "type": "node", + "runtimeVersion": "8", + "request": "launch", + "name": "blinky cli", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/blinky.js", + "args": [ + "--get-blinksticks" + ] + } + ] +} \ No newline at end of file