[TIL 47] Typescript | file import

sunny·2021년 5월 18일
2
post-thumbnail

Typescript로 asset/images 하에 있는 이미지를 불러오려니까 에러가 났다. 에러를 해결해보자!


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

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


index.d.ts 작성

허용할 확장자를 적어준다. 내 경우엔 gif.

declare module '*.gif';

tsconfig.json

tsconfig.json - compilerOptions 안에

밑의 내용을 작성해주자.
"typeRoots": ["./node_modules/@types", "@types"]

사라진 오류!

profile
blog 👉🏻 https://kimnamsun.github.io/

0개의 댓글