Compilation Context · TypeScript Deep Dive

*The compilation context is basically just a fancy term for grouping of the files that TypeScript will parse and analyze to determine what is valid and what isn't.

Along with the information about which files, the compilation context contains information about which compiler options are in use.

A great way to define this logical grouping (we also like to use the term project) is using a tsconfig.json file.*

"컴파일 컨텍스트" 는 기본적으로 TypeScript 가 어떤 것이 유효하고 어떤 것이 유효하지 않은지 결정하기 위해 파싱하고 분석할 파일의 그룹화 를 하기 위한 fancy 한 용어 일 뿐이다.

컴파일 컨텍스트에는 어떤 파일에 대한 정보와 함께 어떤 컴파일러 옵션을 사용하는지에 대한 정보가 포함되어 있다.

이 논리적인 그룹화 를 정의하는 좋은 방법은 tsconfig.json 파일을 사용하는 것이다.