TS_6. Compilation Context

Seoyong Lee·2021년 9월 8일
0

JavaScript / TypeScript

목록 보기
25/25
post-thumbnail

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.
- TypeScript Deep Dive

Compilation Context

Compilation Context는 컴파일 할 파일이나 컴포넌트의 모음이라고 볼 수 있다. 이러한 모음에는 어떠한 컴파일러 옵션이 적용되고 있는지에 대한 정보를 포함하며, 이러한 logical grouping을 정의하는 것이 바로 tsconfig.json 파일이다.

최상위 프로퍼티

  • compileOnSave
  • extends
  • compileOptions
  • files
  • include
  • exclude
  • references
  • typeAcuisition
  • tsNode
profile
코드를 디자인하다

0개의 댓글