vue3报错提示 找不到模块“/App.vue”或其相应的类型声明
情况一、vue3.0+js
报错原因:javascript只能理解.js
文件,无法理解.vue
文件。
解决方案:根目录新建jsconfig.json
{
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@/*":[
"src/*"
]
}
},
"exclude": [
"node_modeules",
"dist"
]
}
问题已解决:👇👇👇
情况二、vue3.0+ts
报错原因:typescript只能理解.ts
文件,无法理解.vue
文件。
方案一:根目录新建en.d.ts
declare module '*.vue' {
import type { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}
也可以解决问题,缺点是需要一直打开
方案二:根目录新建tsconfig.json
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": false,
"jsx": "preserve",
"moduleResolution": "node"
}
}
此时报错已解决 👇👇👇