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