카테고리 없음
Type-React에서 project root 설정하기 (이미지 파일 포함)
Jero++
2023. 7. 7. 09:08
/* tsconfig.json */
{
"compilerOptions": {
// ...
},
"include": ["src", "declaration.d.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}
include에서 project의 root directory를 설정할 수 있습니다.
하지만 tsx파일만을 포함하기 때문에 이미지를 불러오면 이렇게 에러가 뜹니다.
에러를 해결하기 위해서 이미지 폴더가 존재하는 디렉토리에 아래 파일을 추가하면 해결됩니다.
/* index.d.ts */
declare module "*.png" {
const value: any;
export = value;
}