typescript编译es5配置?

代码中写了getters/setters之后使用tsc编译,报如下错误。

clipboard.png

文件目录下有tsconfig.json配置文件内容为(手动添加的,貌似没用)。

clipboard.png

阅读 10.1k
1 个回答

当使用tsc时指定输入文件时,会忽略tsconfig.json文件
官方文档

When input files are specified on the command line, tsconfig.json files are ignored.

所以要指定target

tsc demo -t es5

或者直接使用tsc不指定输入文件,则默认使用当前目录下的tsconfig.json

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
logo
Microsoft
子站问答
访问
宣传栏