diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 000000000..398ffe6b2 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,23 @@ +{ + "version": "2.0.0", + "presentation": { + "echo": false, + "reveal": "always", + "focus": false, + "panel": "dedicated", + "showReuseMessage": true + }, + "tasks": [ + { + "label": "tsc", + "type": "npm", + "script": "watch", + "isBackground": true, + "problemMatcher": "$tsc-watch", + "group": { + "kind": "build", + "isDefault": true + } + } + ] +}