1{ 2 // See https://go.microsoft.com/fwlink/?LinkId=733558 3 // for the documentation about the tasks.json format 4 "version": "2.0.0", 5 "tasks": [ 6 { 7 "type": "gulp", 8 "label": "gulp: local", 9 "task": "local", 10 "group": { 11 "kind": "build", 12 "isDefault": true 13 }, 14 "problemMatcher": [ 15 "$tsc" 16 ] 17 }, 18 { 19 "type": "gulp", 20 "label": "gulp: tsc", 21 "task": "tsc", 22 "group": "build", 23 "problemMatcher": [ 24 "$tsc" 25 ] 26 }, 27 { 28 "type": "gulp", 29 "label": "gulp: tests", 30 "task": "tests", 31 "group": "build", 32 "problemMatcher": [ 33 "$tsc" 34 ] 35 }, 36 { 37 "type": "gulp", 38 "task": "services", 39 "label": "gulp: services", 40 "problemMatcher": [ 41 "$tsc" 42 ], 43 } 44 ] 45}