.vscode/tasks.json (view raw)
1{ 2 "version": "2.0.0", 3 "tasks": [ 4 { 5 "type": "typescript", 6 "tsconfig": "tsconfig.json", 7 "problemMatcher": [ 8 "$tsc" 9 ], 10 "group": { 11 "kind": "build", 12 "isDefault": true 13 }, 14 "label": "tsc: build - tsconfig.json" 15 } 16 ] 17}