[Typescript] CSS 파일 import 오류 - Cannot find module ... or its corresponding type declarations.
·
etc
TypeScript 프로젝트를 진행하다 보면 흔히 마주치는 오류가 있다.분명 파일이 경로에 존재하는데도 특정 파일을 import할 때 Cannot find module 오류가 발생하는 문제다.주로 CSS, 이미지 파일 등 정적 자산을 불러올 때 발생한다.// src/App.tsximport '@shared/ui/assets/index.css'; // Error: Cannot find module '@shared/ui/assets/index.css' or its corresponding type declarations. 문제를 해결하기 위한 여러 방법이 알려져 있으며, 가장 흔한 방식은 글로벌 타입 선언 파일을 생성하거나 tsconfig 설정을 조정하는 것이다. 아래는 일반적으로 제시되는 해결책들이다. 글..