Vite2.0引入ElementPlus打包报错。
node_modules/element-plus/es/utils/types.d.ts:19:55 - error TS2304: Cannot find name ‘global’.
在package.jsonbuild脚本命令行中添加
–skipLibCheck
保存再次打包即可。
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit --skipLibCheck && vite build",
"serve": "vite preview"
},