问题描述
使用vite
创建了一个vue3+typescript
项目,引入elementPlus
在开发环境是正常的没有报错,但是在npm run build
打包生产环境时报错Cannot find name 'Nullable'
解决方法
在tsconfig.json
文件中添加"skipLibCheck":true,
配置,跳过typescript对第三方依赖的类型检查。此时再执行npm run build
时,可正常打包
使用vite
创建了一个vue3+typescript
项目,引入elementPlus
在开发环境是正常的没有报错,但是在npm run build
打包生产环境时报错Cannot find name 'Nullable'
在tsconfig.json
文件中添加"skipLibCheck":true,
配置,跳过typescript对第三方依赖的类型检查。此时再执行npm run build
时,可正常打包