hadean-old/.vscode/tasks.json

28 lines
532 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "npm",
"script": "compile:watch",
"isBackground": true,
"group": {
"kind": "build",
"isDefault": true
},
"runOptions": {
"runOn": "folderOpen"
},
"presentation": {
"reveal": "never",
"echo": false,
"focus": false,
"panel": "dedicated"
},
"problemMatcher": {
"base": "$tsc-watch",
"applyTo": "allDocuments"
}
}
]
}