From 07770b61f17cc938dfabae293cb2d1b508adb8cf Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Fri, 19 Dec 2025 10:07:10 -0800 Subject: [PATCH] Add default watch task --- .vscode/tasks.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .vscode/tasks.json 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 + } + } + ] +}