如何在Tasks.json中为TypeScript指定位置?

时间:2018-11-22 16:14:08

标签: typescript visual-studio-code vscode-tasks

如果您在Visual Studio代码中请求TypeScript构建任务,则会得到以下内容:

    {
        "type": "typescript",
        "tsconfig": "tsconfig.json",
        "problemMatcher": [
            "$tsc"
        ],
        "group": "build"
    }

这将导致它在命令行上运行“ tsc”。如何更改“ tsc”的路径,使其运行类似“ ./node_modules/.bin/tsc”的文件。

1 个答案:

答案 0 :(得分:1)

VS代码中包含预定义的problem matches数。

如果我对您的理解正确,我认为您正在寻找的是creating your own problem matcher