React + TypeScript로 개발하던 도중에 아래같은 에러가 뜨는데
에러 메시지
1
2
3
cannot be compiled under '--isolatedModules' because it is considered a
global script file. Add an import, export, or an empty
'export {}' statement to make it a module. TS1208
해결 방법
파일만 생성해둔 빈 컴포넌트가 존재해서 발생한 에러입니다 이럴 경우 이렇게 작성하면 됩니다.
1
2
// 빈 컴포넌트
export {}