问题描述
使用vite创建了一个vue3+typescript项目,引入elementPlus在开发环境是正常的没有报错,但是在npm run build打包生产环境时报错Cannot find name 'Nullable'

报错信息.png
解决方法
在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时,可正常打包