This is just a helpful way to ensure you can run `tsc --watch` from
inside vscode.
This commit is contained in:
Andrew Eisenberg 2021-05-13 16:40:19 +00:00 коммит произвёл GitHub
Родитель 4c0671c518
Коммит 38c131a270
1 изменённых файлов: 15 добавлений и 0 удалений

15
.vscode/tasks.json поставляемый Normal file
Просмотреть файл

@ -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"
}
]
}