$ 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
的正確方法是什麼?
是的,它的工作,謝謝。但是如果'experimentalDecorators'默認是'true',那麼我該如何指定'false'呢? –
@Maximus默認情況下它與所有其他標誌一樣是false,所以包括它會將值從false更改爲true。 –
謝謝,字符串值的選項怎麼樣,比如'tsc --experimentalDecorators --module =「system」greeter'?這給出了一個錯誤:'未知的編譯器選項'module = system'.' –