安装vite之后,”tsconfig.app.json“文件报错
鼠标移动到报错的红色下划线位置,出现错误提示 “JSON schema for the TypeScript compiler’s configuration fileOption ‘–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” 文件中的报错就消失了。
标签:node,毕设,app,ts,json,报错,3.26,tsconfig From: https://www.cnblogs.com/zhiqi2625/p/18097576