diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 495f90a72..2f6146884 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -1,11 +1,18 @@ { - "version": "0.1.0", - "command": "npm", - "isShellCommand": true, - "isWatching": true, - "showOutput": "always", - "args": [ - "run", "watch" - ], - "problemMatcher": "$tsc-watch" + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "watch", + "problemMatcher": "$tsc-watch", + "isBackground": true, + "presentation": { + "reveal": "never" + }, + "group": { + "kind": "build", + "isDefault": true + } + } + ] } \ No newline at end of file