// tsconfig.json
{
"compilerOptions": {
"strict": true,
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"baseUrl": "src",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": ["src", "public/API"]
}
npx create-react-app typescript
로 생성되는 tsconfig.json
의 설정값들을 확인해보자.
만약compilerOption
이 생략된다면 컴파일러의 기본값이 사용된다.
target
컴파일 했을때 /build
에 생성되는 자바스크립트 버전
*lib *
컴파일 할 때 포함 될 라이브러리 목록, esnext
는 가장 최신버전
baseUrl
모듈 이름을 처리할 기준 디렉토리
import abc from 'src/components/abc'
import abc from 'components/abc' // baseUrl을 src로 설정시 이와 같이 접근할 수 있다.
allowJs
TypeScript 컴파일 작업 진행시 js파일도 컴파일 할것인지 여부
skipLibCheck
정의 파일의 타입 확인을 건너 뛸것인지
esModuleInterop
import React from 'react';
import ReactDOM from 'react-dom';
import * as React from 'react';
import * as ReactDOM from 'react-dom';
import React = require('react');
import React = require('react-dom')
TypeScript에서 의 React는 export default
를 갖고있지 않기에 첫번째와 같이 사용 할 수 없다
그렇기에 두번째나 세번째 방법을 사용해 import해와야 한다.esModuleInterop : true
을 설정해준다면 1,2번째 줄처럼 import가 가능하다.
allowSyntheticDefaultImports
default export를 쓰지 않은 모듈도 default import가 가능하게 할건지 여부
strict
엄격모드 사용 여부, TypeScript를 사용한다면 무조건 true
로 설정해주자. 그렇지 않으면 TypeScript를 사용하는 의미가 퇴색된다.
forceConsistentCasingInfileNames
같은 파일에 대한 일관되지 않은 참조를 허용하지 않을지 여부
noFallthroughCaseInSwitch
switch문에서 fallthrough 에 대한 에러 보고
module
모듈을 위한 코드 생성 설정
moduleResolution
모듈 해석 방법 설정
resolveJsonModule
TypeScript 모듈 내에서 json 모듈을 가져올수 있는 옵션
isolatedModules
각 파일을 분리된 모듈로 트랜스파일
noEmit
결과 파일을 내보낼지 여부
jsx
jsx 코드 생성 설정
include
'프로그래밍 > React.js' 카테고리의 다른 글
Typescript - 이차원배열 타입 정의 , event의 Type 정의 (0) | 2021.04.10 |
---|---|
TypeScript 복습하기 #1 초기세팅 (0) | 2021.01.12 |
React.PureComponent란? (0) | 2019.08.23 |
React Dev Tools 업데이트 되고나서 Highlight Updates가 사라짐? (0) | 2019.08.23 |