tasks.json•870 B
{
"version": "2.0.0",
"tasks": [
{
"label": "npm: build:watch",
"type": "npm",
"script": "build:watch",
"isBackground": true,
"problemMatcher": {
"owner": "custom",
"pattern": [
{
"regexp": "^[✘▲] \\[([A-Z]+)\\] (.+)",
"severity": 1,
"message": 2
},
{
"regexp": "^(?:\\t| {4})(?!\\s)([^:]+)(?::([0-9]+))?(?::([0-9]+))?:$",
"file": 1,
"line": 2,
"column": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": {
"regexp": "\\[watch\\] build started"
},
"endsPattern": {
"regexp": "\\[watch\\] build finished"
}
}
},
"detail": "Run build:watch in background"
}
]
}