typescript에서 file import 에러 해결!

양주영·2022년 2월 7일
0

typescript

목록 보기
1/1

typescript로 이미지를 불러올 때 에러가 났다.
이 에러를 해결해보자!!

@types/global/index.d.ts 생성

프로젝트 디렉토리 root 레벨에 @types/global/index.d.ts 폴더 및 파일을 생성한다.


index.d.ts 작성

허용할 확장자를 적어준다.

declare module '*.gif';

tsconfig.json

tsconfig.json - compilerOptions 안에
"typeRoots": ["./node_modules/@types", "@types"]
이 내용을 작성해주면 된다.

profile
뚜벅뚜벅

0개의 댓글