Add a tasks.json

This is just a helpful way to ensure you can run `tsc --watch` from
inside vscode.
This commit is contained in:
Andrew Eisenberg
2021-05-13 16:40:19 +00:00
committed by GitHub
parent 4c0671c518
commit 38c131a270
+15
View File
@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"option": "watch",
"problemMatcher": [
"$tsc-watch"
],
"group": "build",
"label": "tsc: watch - tsconfig.json"
}
]
}