通过 Typescript 和 ES5 使用本机私有字段和方法
我想通过保留我的 ES5
目标来使用内部使用私有字段(例如 #fieldName: any
)的库。
当我尝试转译时,我得到:私有标识符仅在针对 ECMAScript 2015 及更高版本时可用
。
解决此问题的唯一方法是目标 ES6
或更高版本,或者将 skipLibCheck
设置为 false。
是否可以避免这样做?也许通过 Babel 等其他工具?
I want to use a library that internally uses private fields such as #fieldName: any
, by keeping my ES5
target.
When I try to transpile, I get: Private identifiers are only available when targeting ECMAScript 2015 and higher
.
The only way to solve this is either target ES6
or higher, or put skipLibCheck
as false.
Is it possible to avoid doing this? Maybe through other tools such as Babel?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论