Skip to content
Permalink
2c2ebdc5c5
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
Andrew Eisenberg Add a tasks.json
Latest commit 38c131a May 13, 2021 History
This is just a helpful way to ensure you can run `tsc --watch` from
inside vscode.
0 contributors

Users who have contributed to this file

15 lines (15 sloc) 234 Bytes
{
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"option": "watch",
"problemMatcher": [
"$tsc-watch"
],
"group": "build",
"label": "tsc: watch - tsconfig.json"
}
]
}