Boilerplate TS project.

This commit is contained in:
Jack Hadrill
2022-01-29 10:57:04 +00:00
parent 311568c451
commit ac8778443d
7 changed files with 182 additions and 3 deletions

18
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"option": "watch",
"problemMatcher": [
"$tsc-watch"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "tsc: watch - tsconfig.json"
}
]
}