gpt4 book ai didi

typescript - 如何为 TypeScript 编译器指定 bool (真/假)选项

转载 作者:行者123 更新时间:2023-12-05 01:01:44 25 4
gpt4 key购买 nike

我正在使用:

$ tsc --version
Version 2.0.8

并试图通过 --experimentalDecorators option tsc 像这样:

$ tsc --experimentalDecorators true greeter.ts
//error TS6053: File 'true.ts' not found.

像这样

$ tsc greeter.ts --experimentalDecorators true
//error TS6053: File 'true.ts' not found.

像这样

$ tsc greeter.ts --experimentalDecorators=true
// error TS5023: Unknown compiler option 'experimentaldecorators=true'.

但没有运气。将选项传递给 tsc 的正确方法是什么?

最佳答案

目前,编译器允许 passing in explicit boolean values .

当您针对 tsconfig.json 进行编译并希望为当前编译器运行的目的覆盖特定值时,将显式 bool 值传递给编译器是一个强大的用例.

在这种情况下,想象一下如果您的 tsconfig.jsonexperimentalDecorators 设置为 false,并且您想在它为 true 时测试编译不改变项目本身:

tsc --experimentalDecorators true greeter.ts

关于typescript - 如何为 TypeScript 编译器指定 bool (真/假)选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40684659/

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