{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "type": "shell", "identifier": "local", "label": "gulp: local", "command": "gulp", "args": ["local"], "group": { "kind": "build", "isDefault": true }, "problemMatcher": ["$gulp-tsc"] }, { "type": "shell", "identifier": "tsc", "label": "gulp: tsc", "command": "gulp", "args": ["tsc"], "group": "build", "problemMatcher": ["$gulp-tsc"] }, { "type": "shell", "identifier": "tests", "label": "gulp: tests", "command": "gulp", "args": ["tests"], "group": "build", "problemMatcher": ["$gulp-tsc"] } ] }