tasks.json•732 B
{
"version": "2.0.0",
"tasks": [
{
"label": "npm: build:watch",
"type": "npm",
"script": "build:watch",
"isBackground": true,
"problemMatcher": {
"owner": "custom",
"pattern": {
"regexp": "^([^\\s].*)\\((\\d+|\\d+,\\d+)\\):\\s+(error|warning|info)\\s+(CODE\\d+)\\s*:\\s*(.*)$",
"file": 1,
"location": 2,
"severity": 3,
"code": 4,
"message": 5
},
"background": {
"activeOnStart": true,
"beginsPattern": "^.*Starting incremental compilation.*$",
"endsPattern": "^.*Watching for file changes.*$"
}
},
"detail": "Run build:watch in background"
}
]
}