Skip to content

Commit 38c131a

Browse files
authored
Add a tasks.json
This is just a helpful way to ensure you can run `tsc --watch` from inside vscode.
1 parent 4c0671c commit 38c131a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.vscode/tasks.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "typescript",
6+
"tsconfig": "tsconfig.json",
7+
"option": "watch",
8+
"problemMatcher": [
9+
"$tsc-watch"
10+
],
11+
"group": "build",
12+
"label": "tsc: watch - tsconfig.json"
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)