https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 549b5429d4837344e8c99657109bb6538fd2dbb5 authored by Daniel Rosenwasser on 23 September 2022, 22:50:43 UTC
Use paths in package.json 'files' array that work with npm 6 and later.
Tip revision: 549b542
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