Merge pull request #501 from github/aeisenberg/add-task

Add a tasks.json
This commit is contained in:
Andrew Eisenberg 2021-05-13 12:35:33 -07:00 committed by GitHub
commit 97887fe996
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
.vscode/tasks.json vendored Normal file
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"
}
]
}