diff --git a/template/config/typescript/env.d.ts b/template/config/typescript/env.d.ts index 11f02fe2a..d27eb5a31 100644 --- a/template/config/typescript/env.d.ts +++ b/template/config/typescript/env.d.ts @@ -1 +1,8 @@ /// + +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 +}