Skip to content
Permalink
Browse files
Add a tasks.json
This is just a helpful way to ensure you can run `tsc --watch` from
inside vscode.
  • Loading branch information
Andrew Eisenberg authored and GitHub committed May 13, 2021
1 parent 4c0671c commit 38c131a270be500266a6d713dd032c344805df00
Showing 1 changed file with 15 additions and 0 deletions.
@@ -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"
}
]
}

0 comments on commit 38c131a

Please sign in to comment.