我正在尝试避免在watch: true
配置中使用tsconfig.json
。
通过VSCode的任务我正在使用基本问题匹配器$tsc-watch
,但在构建时它不会在监视模式下启动tsc
。我正在添加gulp
支持,我看到有gulp-watch
,但我想了解为什么$tsc-watch
无效,因为我认为应该这样做。
答案 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
}
}
]
}