diff options
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..353955d --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,20 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Show in console", + "type": "shell", + "command": "node ${file}", + "group": { + "kind": "build", + "isDefault": true + }, + "presentation": { + "reveal": "always", + "clear": true, + "echo": false, + "showReuseMessage": false + } + } + ] +}
\ No newline at end of file |