Housekeeping for VS code.

This commit is contained in:
Bokuan Li
2026-03-06 15:45:31 -05:00
parent 139f5b8a99
commit 9139ee3296
3 changed files with 201 additions and 0 deletions

44
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,44 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build",
"type": "shell",
"command": "npx spec compile",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Serve",
"type": "shell",
"command": "npx spec serve",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
},
{
"label": "Watch",
"type": "shell",
"command": "npx spec watch",
"windows": {
"options": {
"shell": {
"executable": "cmd.exe",
"args": ["/d", "/c"]
}
}
}
}
]
}