赞
踩
vue3+ts项目打包报Elementui内部的错
ERROR in D:/Project/项目名称/node_modules/element-ui/types/index.d.ts(1,15): 1:15 Cannot find module './element-ui' or its corresponding type declarations. > 1 | export * from './element-ui' | ^ 2 | 3 | import * as ElementUI from './element-ui' 4 | export default ElementUI ERROR in D:/Project/项目名称/node_modules/element-ui/types/index.d.ts(3,28): 3:28 Cannot find module './element-ui' or its corresponding type declarations. 1 | export * from './element-ui' 2 | > 3 | import * as ElementUI from './element-ui' | ^ 4 | export default ElementUI 5 |
在tsconfig.json文件,compilerOptions里加入 “skipLibCheck”: true,
翻译为:跳过检查库的代码。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。