Files
garden/.vscode/tasks.json
2026-03-06 15:45:31 -05:00

44 lines
1018 B
JSON

{
"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"]
}
}
}
}
]
}