fostr/.vscode/tasks.json

36 lines
929 B
JSON
Raw Normal View History

2024-11-13 04:55:50 +00:00
{
"version": "2.0.0",
"tasks": [
{
"label": "npm run dev-task",
"type": "npm",
"script": "dev-task",
"isBackground": true,
"problemMatcher": {
"owner": "custom",
"pattern": {
"regexp": "^$"
},
"background": {
"activeOnStart": true,
"beginsPattern": ".*",
"endsPattern": "ready in .+"
}
},
},
{
"label": "postdebugKill",
"command": "echo ${input:terminate}",
"type": "shell",
"problemMatcher": []
},
],
"inputs": [
{
"id": "terminate",
"type": "command",
"command": "workbench.action.tasks.terminate",
"args": "npm run dev-task"
}
]
}