https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 69972a3c792bb2d85bb6a8296d653e588e13db71 authored by TypeScript Bot on 17 September 2020, 05:45:52 UTC
Merge remote-tracking branch 'origin/master' into release-4.1
Tip revision: 69972a3
tasks.json
{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "type": "gulp",
            "label": "gulp: local",
            "task": "local",
            "group": {
                "kind": "build",
                "isDefault": true
            },
            "problemMatcher": [
                "$tsc"
            ]
        },
        {
            "type": "gulp",
            "label": "gulp: tsc",
            "task": "tsc",
            "group": "build",
            "problemMatcher": [
                "$tsc"
            ]
        },
        {
            "type": "gulp",
            "label": "gulp: tests",
            "task": "tests",
            "group": "build",
            "problemMatcher": [
                "$tsc"
            ]
        },
        {
            "type": "gulp",
            "task": "services",
            "label": "gulp: services",
            "problemMatcher": [
                "$tsc"
            ],
        }
    ]
}
back to top