Module '"d:/systemProject/system-vue/node_modules/@types/nprogress/index"' can only be default-imported using the 'allowSyntheticDefaultImports' flagts(1259) index.d.ts(45, 1): This module is declared with 'export =', and can only be used with a default import when using the 'allowSyntheticDefaultImports' flag.
时间: 2024-02-06 08:04:11 浏览: 262
jiaminghi/data-view dataV for vite vue2 补丁 for npm/yarn
5星 · 资源好评率100%
这个错误是 TypeScript 编译器的一个警告,它告诉您,您需要在 TypeScript 配置文件中启用 `allowSyntheticDefaultImports` 标志。这个标志允许您使用默认导入来导入使用 `export =` 声明的模块。在您的 `tsconfig.json` 文件中添加以下行:
```
{
"compilerOptions": {
"allowSyntheticDefaultImports": true
}
}
```
这将解决这个问题。
阅读全文