aboutsummaryrefslogtreecommitdiff
path: root/.vscode/tasks.json
diff options
context:
space:
mode:
authorsoaos <soaos@soaos.dev>2026-04-04 15:43:46 -0400
committersoaos <soaos@soaos.dev>2026-04-04 15:43:46 -0400
commitbf5e4797811adf728c1495f9e20f9c1c3db3586a (patch)
treecf14bd54417eac9d69d9b3676ed2846d2fcaa26f /.vscode/tasks.json
Initial Commit (Fresh Start)HEADmaster
Diffstat (limited to '.vscode/tasks.json')
-rw-r--r--.vscode/tasks.json20
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
+ }
+ }
+ ]
+}