vue3.0+vite+ts build打包报错问题汇总
一、打包报错问题:Did you mean to enable "allowJs" option?解决方法:tsconfig.json文件中,“compilerOptions”配置"allowJs": true||===================================================================||二、打包报错问题:Property ‘ ‘ do
一、打包报错问题:Did you mean to enable "allowJs" option?
解决方法:tsconfig.json文件中,“compilerOptions”配置"allowJs": true
||===================================================================||
二、打包报错问题:Property ‘ ‘ does not exist on type ‘never‘
解决方法:将 package.json 文件中的 "build": "vue-tsc --noEmit && vite build",改为 : "build": "vite build",
||===================================================================||
三、打包报错问题:Cannot find module '@/router' or its corresponding type declarations.
解决方法:tsconfig.json文件中compilerOptions中加入以下配置解决
||===================================================================||
四、打包报错问题:Could not load /data/workspace/src/components/menuTree/index.vue
解决方法:使用jenkins流水线打包时,import文件路径严格区分大小写
有帮助就点个赞吧~
更多推荐
所有评论(0)