problem
Cannot find module ‘…/views/HomeView.vue’ or its corresponding type declarations.ts
版本:vue3 ts
reason
ts无法识别 vue 文件
solution
在根路径下 env.d.ts 添加以下声明
// env.d.ts
// 这个文件生效的前提是 tsconfig.json 中配置了 "include": ["env.d.ts"],
declare module '*.vue' {
import { DefineComponent } from 'vue';
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>;
export default component;
}