diff options
| author | soaos <soaos@soaos.dev> | 2026-04-04 15:43:46 -0400 |
|---|---|---|
| committer | soaos <soaos@soaos.dev> | 2026-04-04 15:43:46 -0400 |
| commit | bf5e4797811adf728c1495f9e20f9c1c3db3586a (patch) | |
| tree | cf14bd54417eac9d69d9b3676ed2846d2fcaa26f /.vscode/tasks.json | |
Diffstat (limited to '.vscode/tasks.json')
| -rw-r--r-- | .vscode/tasks.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..3b17e53 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,20 @@ +// See https://go.microsoft.com/fwlink/?LinkId=733558 +// for the documentation about the tasks.json format +{ + "version": "2.0.0", + "tasks": [ + { + "type": "npm", + "script": "watch", + "problemMatcher": "$tsc-watch", + "isBackground": true, + "presentation": { + "reveal": "never" + }, + "group": { + "kind": "build", + "isDefault": true + } + } + ] +} |