CRA로 React Typescript 프로젝트 생성시 기본 tsconfig.json 파일

c08h·2019년 12월 20일
0

tsconfig.json 파일에서 typescript 컴파일러 환경 설정을 한다.

{
  "compilerOptions": {
    "target": "es5",
    "lib": ["dom", "dom.iterable", "esnext"],
    "allowJs": true,
    "skipLibCheck": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "strict": true,
    "forceConsistentCasingInFileNames": true,
    "module": "esnext",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "react"
  },
  "include": ["src"]
}
profile
나는 좋아한다 프론트엔드 개발을

0개의 댓글