其他分享
首页 > 其他分享> > Vite2.0+ElementPlus打包报错Cannot find name ‘global‘.

Vite2.0+ElementPlus打包报错Cannot find name ‘global‘.

作者:互联网

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"
  },

在这里插入图片描述

标签:ElementPlus,name,global,报错,vite,Vite2.0,find,打包
来源: https://blog.csdn.net/RequesToGod/article/details/120248467