gpt4 book ai didi

typescript - 如何在 VS Code 中使用 "compileOnSave"?

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

Typescript 有一个自动编译 typescript 的配置选项,as documented here .

{
"compileOnSave": true,
"compilerOptions": {
"noImplicitAny" : true
}
}

但仅将其包含在我的 tsconfig.json 文件中不足以触发自动编译。我使用 MS Visual Studio Code 作为我的 IDE。如何触发“保存时编译”行为?

最佳答案

在 compilerOptions 中尝试观察参数...它将监视您的 ts 文件中的更改并自动刷新您的 js 文件。示例:

    "compilerOptions": {
"module":"commonjs",
"noImplicitAny": true,
"removeComments": false,
"preserveConstEnums": true,
"outDir": "Scripts/javascript",
"watch": true,
"sourceMap": true
}

关于typescript - 如何在 VS Code 中使用 "compileOnSave"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36428368/

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