我试图避免watch: true
在tsconfig.json
配置中使用。
通过 VSCode 的任务,我正在使用基本问题匹配器$tsc-watch
,但在构建时它没有tsc
以监视模式启动。我正在添加gulp
支持,我看到有,gulp-watch
但我想了解为什么$tsc-watch
不能像我认为的那样工作。
我试图避免watch: true
在tsconfig.json
配置中使用。
通过 VSCode 的任务,我正在使用基本问题匹配器$tsc-watch
,但在构建时它没有tsc
以监视模式启动。我正在添加gulp
支持,我看到有,gulp-watch
但我想了解为什么$tsc-watch
不能像我认为的那样工作。
我通过查看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
}
}
]
}