Update tasks to 2.0

This commit is contained in:
Pine Wu
2018-02-23 14:11:19 -08:00
parent 8c86648b40
commit 16af175b3a
2 changed files with 32 additions and 35 deletions

View File

@@ -1,9 +1,18 @@
{
"version": "0.1.0",
"command": "npm",
"isShellCommand": true,
"showOutput": "silent",
"args": ["run", "watch"],
"isWatching": true,
"problemMatcher": "$tsc-watch"
"version": "2.0.0",
"tasks": [
{
"label": "npm watch",
"command": "npm",
"args": ["run", "watch"],
"type": "shell",
"presentation": {
"reveal": "silent",
"focus": false,
"panel": "shared"
},
"isBackground": true,
"problemMatcher": "$tsc-watch"
}
],
}