vue3-vite安装后main.ts文件和tsconfig.app.json文件报错解决办法
作者:零OO
报错现象:
安装vite后“main.ts” 和 “tsconfig.app.json” 文件报错
import { createApp } from 'vue' import { createPinia } from 'pinia' import router from './router'
安装vite后,“main.ts” 文件中这几行出现了报错,如图所示:
鼠标移动到报错位置,显示提示:
“Cannot find module ‘vue’. Did you mean to set the ‘moduleResolution’ option to ‘node’, or to add aliases to the ‘paths’ option?ts(2792)”,
如图所示:
“tsconfig.app.json” 文件也会报错,如图:
鼠标移动到报错的红色下划线位置,出现错误提示 “JSON schema for the TypeScript compiler’s configuration file
Option ‘–resolveJsonModule’ cannot be specified without ‘node’ module resolution strategy.ts”,如图:
解决方法
根据报错提示:“Cannot find module ‘vue’. Did you mean to set the ‘moduleResolution’ option to ‘node’, or to add aliases to the ‘paths’ option?ts(2792)”,
在 “tsconfig.app.json” 文件 的"compilerOptions" 选项中添加配置- - -“moduleResolution”: “node”,添加后保存文件,“main.ts” 和 “tsconfig.app.json” 文件中的报错就消失了。
总结
到此这篇关于vue3-vite安装后main.ts文件和tsconfig.app.json文件报错解决办法的文章就介绍到这了,更多相关vue3-vite安装后文件报错内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
您可能感兴趣的文章:
- vite+vue3项目启动报错Unexpected “%“问题及解决
- vue3项目中配置sass,vite报错Undefined mixin问题
- vue3+vite+vant项目下按需引入vant报错Failed to resolve import的原因及解决方案
- vite+vue3使用@路径报错处理
- vue3+vite:src使用require动态导入图片报错的最新解决方法
- vue3+vite中报错信息处理方法Error: Module “path“ has been externalized for browser compatibility...
- Vue3之Vite中由element ui更新导致的启动报错解决
- vue3+vite项目中按需引入vant报错:Failed to resolve import的解决方案
- vite+vue3项目报错:TypeError: Promise.allSettled is not a function