https://github.com/Microsoft/TypeScript
Raw File
Tip revision: 7247d8e33a618650e256d43107b994b24b2bb84e authored by Anders Hejlsberg on 25 May 2018, 17:03:42 UTC
T extends unknown ? X : Y should eagerly resolve to X
Tip revision: 7247d8e
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