Add TypeScript watch as default build task

This commit is contained in:
Martijn Walraven 2018-10-12 11:23:30 +02:00
parent 823d68d318
commit 7720ae835e

27
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "TypeScript watch",
"type": "shell",
"command": "./node_modules/.bin/tsc",
"args": [
"--build",
"tsconfig.build.json",
"--watch"
],
"isBackground": true,
"problemMatcher": [
"$tsc-watch"
],
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "never",
"panel": "dedicated"
}
}
]
}