타입스크립트 이미지 경로 오류
타입스크립트로 프로젝트를 진행하던 도중 src 폴더 안에 있는 이미지를 불러올 때 이미지 경로 오류가 발생했다.
1
TS2307: Cannot find module 'assets/img/todoListTip.png' or its corresponding type declarations.
타입스크립트가 .png
이미지 파일을 모듈로 읽을 수 없기 때문에 발생한 오류이다.
해결방법
1. 최상단 경로에 @types/global/index.d.ts 파일을 생성하기
2. index.d.ts 파일에 코드 작성하기
1
declare module "*.png";
참고 블로그
This post is licensed under CC BY 4.0 by the author.