vsc typescript auto build on save

Solutions on MaxInterview for vsc typescript auto build on save by the best coders in the world

showing results for - "vsc typescript auto build on save"
Claudia
12 Jan 2018
1// tsconfig.json (compile tsc for update changes)
2{
3    "compileOnSave": true,
4    "compilerOptions": {
5        "watch": true
6    }
7}