gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-10-30 21:49:02 27 4
gpt4 key购买 nike

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

在 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
}
}
]
}

关于typescript - VSCode TypeScript problemMatcher `$tsc-watch` 没看,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49226705/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com