VSCode TypeScript problemMatcher` $ tsc-watch`没有看

时间:2018-03-12 00:51:29

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

我正在尝试避免在watch: true配置中使用tsconfig.json

通过VSCode的任务我正在使用基本问题匹配器$tsc-watch,但在构建时它不会在监视模式下启动tsc。我正在添加gulp支持,我看到有gulp-watch,但我想了解为什么$tsc-watch无效,因为我认为应该这样做。

1 个答案:

答案 0 :(得分:1)

我通过查看typescript扩展程序taskProvider.js来解决这个问题。为了使tsc-watch能够正常运行,需要设置option: "watch"任务。

{
    // See https://go.microsoft.com/fwlink/?LinkId=733558
    // for the documentation about the tasks.json format
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "type": "typescript",
            "tsconfig": "tsconfig.json",
            "isBackground": true,
            "problemMatcher": ["$tsc-watch"],
            "option": "watch",
            "presentation": {
                "echo": true,
                "reveal": "silent",
                "focus": false,
                "panel": "shared"
            },
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}