tasks.json•1.13 kB
{
"version": "2.0.0",
"tasks": [
{
"label": "npm watch",
"type": "npm",
"script": "watch",
"problemMatcher": [
"$ts-webpack-watch",
"$tslint-webpack-watch"
],
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "npm dev-build",
"type": "npm",
"script": "dev-build",
"problemMatcher": [
"$ts-webpack-watch",
"$tslint-webpack-watch"
],
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build"
}
},
{
"type": "npm",
"script": "ci-build",
"group": "build",
"problemMatcher": [],
"label": "npm: ci-build",
"detail": "npm run lint && npm run build"
}
]
}