tsconfig.json 외에 tsconfig.app.json, tsconfig.node.json 파일이 생성되는 이유

tistory: tsconfig, tsconfig.appjson, tsconfig.node.json

각 파일의 역할

  • tsconfig.json
    • 공통적인 설정을 정의
    • 빌드설정, 전역옵션, 참조파일 목록 등
  • tsconfig.app.json
    • 브라우저와 관련된 옵션
    • JSX설정, 라이브러리, DOM 관련 옵션
  • tsconfig.node.json
    • Node와 관련된 옵션