몽땅뚝딱 개발자

[Typescript] TS2307: Cannot find module '.png' or its corresponding type declarations. 본문

Development/Typescript

[Typescript] TS2307: Cannot find module '.png' or its corresponding type declarations.

레오나르도 다빈츠 2023. 10. 15. 17:23

 

 

에러

[Typescript] TS2307: Cannot find module '.png' or its corresponding type declarations.

 

 

원인

src 바로 하위 레벨에 설정한 d.ts 파일이 폴더 내부에서 적용되지 않아서 실제 이미지가 있는 디렉토리 하위로 옮겼더니 적용되었다.

 

 

declare module '*.webp';
declare module '*.png';
declare module '*.jpg';
declare module '*.jpeg';
declare module '*.gif';
declare module '*.svg';

 

 


개인적으로 공부한 내용을 정리하는 블로그로
잘못된 개념을 게시하지않도록 주의하고 있으나 오류가 있을 수 있습니다.

 

Comments