타입 공백 발견
Cannot find module 또는 암시적 any 오류가 외부 모듈 경계에서 발생한다.
missing type타입이 없는 외부 모듈이나 asset import는 declare module로 컴파일러에게 모듈의 형태를 알려야 한다.
Cannot find module 또는 암시적 any 오류가 외부 모듈 경계에서 발생한다.
missing type패키지 전체, 특정 확장자, 특정 export 형태 중 필요한 만큼만 선언한다.
narrow declaretsconfig include/typeRoots가 선언 파일을 읽는지 확인한다.
visible to TS처음엔 최소 선언으로 막고 실제 사용 API가 늘면 unknown과 구체 타입으로 좁힌다.
evolvedeclare module "*.svg" {
const src: string;
export default src;
}