This repository has been archived on 2021-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
canvas-receiver/.vscode/tasks.json

37 lines
579 B
JSON
Raw Normal View History

2021-08-24 20:27:20 +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"
}
]
}