85 lines
2.2 KiB
JSON
85 lines
2.2 KiB
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "Debug",
|
|
"type": "npm",
|
|
"script": "build",
|
|
"group": "build",
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"label": "Release",
|
|
"type": "npm",
|
|
"script": "release",
|
|
"group": "build",
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"label": "Watch Debug",
|
|
"type": "npm",
|
|
"script": "watch",
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
},
|
|
"problemMatcher": "$tsc-watch",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "never"
|
|
}
|
|
},
|
|
{
|
|
"label": "Watch Release",
|
|
"type": "npm",
|
|
"script": "watch-release",
|
|
"group": "build",
|
|
"problemMatcher": "$tsc-watch",
|
|
"isBackground": true,
|
|
"presentation": {
|
|
"reveal": "never"
|
|
}
|
|
},
|
|
{
|
|
"label": "Stop Debug",
|
|
"type": "npm",
|
|
"script": "stop",
|
|
"problemMatcher": [],
|
|
"presentation": {
|
|
"reveal": "never"
|
|
}
|
|
},
|
|
{
|
|
"label": "Stop Release",
|
|
"type": "npm",
|
|
"script": "stop-release",
|
|
"problemMatcher": [],
|
|
"presentation": {
|
|
"reveal": "never"
|
|
}
|
|
},
|
|
{
|
|
"label": "Rebuild",
|
|
"type": "npm",
|
|
"script": "rebuild",
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"label": "Rebuild Release",
|
|
"type": "npm",
|
|
"script": "rebuild-release",
|
|
"problemMatcher": "$tsc"
|
|
},
|
|
{
|
|
"label": "Lint",
|
|
"type": "npm",
|
|
"script": "lint",
|
|
"problemMatcher": "$tslint5",
|
|
"presentation": {
|
|
"reveal": "never"
|
|
}
|
|
}
|
|
]
|
|
} |