37 lines
No EOL
822 B
JSON
37 lines
No EOL
822 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "build",
|
|
"type": "shell",
|
|
"command": "yarn",
|
|
"args": [
|
|
"build"
|
|
]
|
|
},
|
|
{
|
|
"label": "serve",
|
|
"type": "shell",
|
|
"command": "yarn",
|
|
"args": [
|
|
"run",
|
|
"serve"
|
|
],
|
|
"isBackground": true
|
|
},
|
|
{
|
|
"label": "terminate all tasks",
|
|
"command": "echo ${input:terminate}",
|
|
"type": "shell",
|
|
"problemMatcher": []
|
|
}
|
|
],
|
|
"inputs": [
|
|
{
|
|
"id": "terminate",
|
|
"type": "command",
|
|
"command": "workbench.action.tasks.terminate",
|
|
"args": "terminateAll"
|
|
}
|
|
]
|
|
} |