如果您在Visual Studio代码中请求TypeScript构建任务,则会得到以下内容:
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher": [
"$tsc"
],
"group": "build"
}
这将导致它在命令行上运行“ tsc”。如何更改“ tsc”的路径,使其运行类似“ ./node_modules/.bin/tsc”的文件。
答案 0 :(得分:1)
VS代码中包含预定义的problem matches数。
如果我对您的理解正确,我认为您正在寻找的是creating your own problem matcher。