Revision 924c68ca956091d5d35661f64ab054d879c15f91 authored by Sheetal Nandi on 10 August 2022, 23:56:54 UTC, committed by GitHub on 10 August 2022, 23:56:54 UTC
1 parent 90cfbae
Raw File
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