在Visual Studio代码中修复“继续而不扫描任务输出”

时间:2019-06-09 23:10:13

标签: typescript visual-studio-code

我创建了一个运行打字稿的任务,然后转到终端>运行任务,然后选择构建打字稿任务。

然后显示消息:

  

继续而不扫描任务输出

enter image description here

我已经阅读了链接页面,但是找不到任何东西。我如何摆脱此消息?

tasks.json:

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "Build Typescript",
            "command": "tsc"
        }
    ]
}

1 个答案:

答案 0 :(得分:3)

如果只希望该消息不针对该特定任务出现,则将其添加到您的任务中:

"problemMatcher": []

如果要扫描输出,请选择或进行问题匹配。您可以在vs代码文档的这一部分中了解更多有关此内容的信息:

Processing task output with problem matchers