summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Solorio <[email protected]>2025-05-31 11:09:25 -0700
committerGitHub <[email protected]>2025-05-31 11:09:25 -0700
commitc350fbef7ff63039ed41d4bf97d1c1bcd47afc49 (patch)
treeac2a0997017c8b58d22f3dc5d72ecf8d901cff58
parent1a84d8f6741e71b6ee4175401182bec290d4e1d5 (diff)
Add default build task for VS Code (#639)
-rw-r--r--.vscode/tasks.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 00000000..1ff9a62f
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,16 @@
+{
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "type": "npm",
+ "script": "build",
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ },
+ "problemMatcher": [],
+ "label": "npm: build",
+ "detail": "scripts/build.sh"
+ }
+ ]
+}