Revision 161b90a311faf845e85f3c59b56fbf30655f8c7a authored by TypeScript Bot on 09 October 2019, 19:11:02 UTC, committed by Wesley Wigham on 09 October 2019, 19:11:02 UTC
1 parent 9823d82
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": "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