Skip to content

JS基础-22:Fix Module can only be default-imported using the ‘allowSyntheticDefaultImports’ flag issue

问题现象

Untitled

原因

模块采用export = 导出的,没有默认导出。

尝试在tsconfig.json中添加allowSyntheticDefaultImports 没有任何效果,当然你的场景可能有效,可以试试

解决方法

tsx
import * as mime from "mime";

const mimeInstance = (mime as any).default;

提示:由于不知道*as mime后是什么,可以打断点看看,看完你就知道怎么使用了

参考文献

Released under the MIT License.