TS使用命名空间报 Namespace not marked type-only declare错误解决

完整报错信息为:

Namespace not marked type-only declare. Non-declarative namespaces are only supported experimentally in Babel

中文翻译:命名空间未标记为仅声明类型。只有在Babel中实验性地支持非声明性名称空间


这句话是值如果你单纯的使用明明空间, 而不是导出的方式进行使用的话, 则应该在声明的时候添加 declare 关键字

解决方法代码图:

TS使用命名空间报 Namespace not marked type-only declare错误解决_第1张图片

官方文档地址, 英文的

https://babeljs.io/docs/en/babel-plugin-transform-typescript

你可能感兴趣的:(React,TypeScript)