https://github.com/Microsoft/TypeScript
Raw File
Tip revision: af81f6a3e14cffe38b041e9e928fe394e316c06b authored by Nathan Oshlag on 24 October 2022, 16:43:51 UTC
Commit with "double quotes" and 'single quotes'
Tip revision: af81f6a
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