Add a tasks.json
This is just a helpful way to ensure you can run `tsc --watch` from inside vscode.
This commit is contained in:
Родитель
4c0671c518
Коммит
38c131a270
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
Загрузка…
Ссылка в новой задаче