diff options
| author | soaos <soaos@soaos.dev> | 2026-01-27 23:07:40 -0500 |
|---|---|---|
| committer | soaos <soaos@soaos.dev> | 2026-01-27 23:07:40 -0500 |
| commit | 248f89c80eddf5f01cc78b9011d62a3c83801d1c (patch) | |
| tree | c99fb93881702415a4854753d311a50c06ea7741 /.vscode/tasks.json | |
Initial Commit
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 + } + } + ] +} |
