我正在尝试在Mac上的visual studio代码版本1.18.0中设置打字稿任务。我正在使用tasks.json版本2.0.0
。
任务配置如下所示:
{
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"label": "Run typescript",
"isBackground": true,
"tsconfig": "tsconfig.json",
"problemMatcher": [
"$tsc"
],
"promptOnClose": false,
"presentation": {
"echo": false,
"reveal": "never",
"focus": false,
"panel": "dedicated"
}
}
]
}
打字稿任务本身正在运作。但是,当我运行任务时,它会创建一个新的终端部分。
我希望任务的输出使用OUTPUT窗口,如下所示: