summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMatthew Miller <matthew@millerti.me>2024-02-22 22:06:29 -0800
committerMatthew Miller <matthew@millerti.me>2024-02-22 22:06:29 -0800
commitb835ce41e1936765a49d7f7114116d78ddb67a1c (patch)
treeb5a8f4c8b8d9a749fa60e4eba010b0ea639fdb76
parent3a6f781956ef1a31b22eba545541c152fc61ee7a (diff)
Add VS Code build task for types
-rw-r--r--.vscode/tasks.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 10393ac..2315b08 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -22,6 +22,17 @@
"problemMatcher": [],
"label": "pnpm: build:browser",
"detail": "pnpm run build:browser"
+ },
+ {
+ "type": "npm",
+ "script": "build:types",
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "problemMatcher": [],
+ "label": "pnpm: build:types",
+ "detail": "pnpm run build:types"
}
]
}