https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 76c94c5c1e16bf4f59069f5c9cb3cf4d71c78475 authored by Daniel Rosenwasser on 28 January 2019, 19:15:57 UTC
Update LKG.
Tip revision: 76c94c5
tasks.json
{
    // 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"]
        }
    ]
}
back to top