5

我试图避免watch: truetsconfig.json配置中使用。

通过 VSCode 的任务,我正在使用基本问题匹配器$tsc-watch,但在构建时它没有tsc以监视模式启动。我正在添加gulp支持,我看到有,gulp-watch但我想了解为什么$tsc-watch不能像我认为的那样工作。

4

1 回答 1

5

我通过查看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
            }
        }
    ]
}
于 2018-03-12T05:50:26.280 回答