44 lines
1018 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |