Skip to content

Commit

Permalink
Add a tasks.json
Browse files Browse the repository at this point in the history
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 38c131a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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.