Skip to content

Commit 3a08065

Browse files
committed
Fix "TS2307: Cannot find module './assets/logo.png' or its corresponding type declarations." in tests
1 parent 2a2b717 commit 3a08065

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

fixtures/vuejs3-typescript/types/shims-vue.d.ts renamed to fixtures/vuejs3-typescript/types/shims.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,8 @@ declare module '*.vue' {
44
const component: ReturnType<typeof defineComponent>;
55
export default component;
66
}
7+
8+
declare module "*.png" {
9+
const value: any;
10+
export default value;
11+
}

0 commit comments

Comments
 (0)