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’.

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

package.jsonbuild脚本命令行中添加

–skipLibCheck

保存再次打包即可。

  "scripts": {
    "dev": "vite",
    "build": "vue-tsc --noEmit --skipLibCheck && vite build",
    "serve": "vite preview"
  },

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

上一篇:冬季实战营第一期:从零到一上手玩转云服务器-学习报告


下一篇:vue3+vite加载路由时报错 net::ERR_ABORTED 500 (Internal Server Error)