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.
websocket-canvas-server/.vscode/tasks.json

26 lines
401 B
JSON
Raw Normal View History

2021-08-24 20:27:57 +00:00
{
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": [
"$tsc"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "tsc: Erstellen tsconfig.json"
},
{
"type": "npm",
"script": "build",
"group": "build",
"problemMatcher": [],
"label": "npm: build",
"detail": "tsc -p ./"
}
]
}