dance/.vscode/tasks.json
2021-05-04 22:10:37 +02:00

36 lines
782 B
JSON

{
"version": "2.0.0",
"tasks": [
// These tasks run automatically when loading Dance in VS Code. Make sure to
// enable them (Command palette > Manage automatic tasks in folder > Allow).
{
"type": "npm",
"script": "compile:watch",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
},
"runOptions": {
"runOn": "folderOpen",
},
},
{
"type": "npm",
"script": "generate:watch",
"problemMatcher": [],
"isBackground": true,
"presentation": {
"reveal": "never"
},
"runOptions": {
"runOn": "folderOpen",
},
},
],
}