diff options
author | Kyle K <kylek389@gmail.com> | 2020-08-02 16:46:48 -0500 |
---|---|---|
committer | Kyle K <kylek389@gmail.com> | 2020-08-02 16:46:48 -0500 |
commit | 35b6225e63cc978483b7485c9e3890dc75133a56 (patch) | |
tree | 5a7ccd13a72d9aafd310f3d6123404f2d09ee757 /.vscode/tasks.json | |
parent | 974a4b878b10882a116bfd748f655c68ffd23ad7 (diff) | |
download | jsexamples-35b6225e63cc978483b7485c9e3890dc75133a56.tar.gz jsexamples-35b6225e63cc978483b7485c9e3890dc75133a56.tar.bz2 jsexamples-35b6225e63cc978483b7485c9e3890dc75133a56.zip |
change label on default task
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r-- | .vscode/tasks.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 353955d..7138b93 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -2,7 +2,7 @@ "version": "2.0.0", "tasks": [ { - "label": "Show in console", + "label": "Run with node", "type": "shell", "command": "node ${file}", "group": { @@ -14,7 +14,8 @@ "clear": true, "echo": false, "showReuseMessage": false - } + }, + "problemMatcher": [] } ] }
\ No newline at end of file |