
side project를 진행하던 도중 다음과 같은 오류가 발생했다.
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
해당 오류는 typescript로 이루어진 프로젝트를 진행할 때, 아무것도 안쓰여 있는 빈폴더가 있을때 발생한다.
빈폴더에 export{}를 해주면 해결된다.