websocket-canvas/.vscode/tasks.json

37 lines
579 B
JSON
Raw Normal View History

2021-08-24 17:21:14 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "debug",
"label": "npm debug",
"isBackground": true,
"problemMatcher": [
"$tsc-watch"
]
},
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"option": "watch",
"problemMatcher": [
"$tsc-watch"
],
"group": "build",
"label": "tsc: Watch"
},
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": [
"$tsc"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "tsc: Erstellen tsconfig.json"
}
]
}