• 타입스크립트 설정 파일

    2023. 6. 25.

    by. JJo 😊

    📌 tsconfig.json

    타입스크립트 설정 파일은 타입스크립트를 자바스크립트로 변환할 때의 설정을 정의해놓는 파일이다.

    타입스크립트 .ts 파일들을 .js 파일로 변환할 때 어떻게 변환할 것인지 세부설정을 할 수 있다.

    📌 tsconfig.json 설정 파일 속성

    {
     "include": ["src/**/*"] // 변환할 폴더를 지정
     "exclude": ["node_modules"] // include와 반대되는 속성으로 변환하지 않을 폴더 경로를 지정
     
     "compilerOptions": {
      "target": "es5", // 'es3', 'es5', 'es2015', 'es2016', 'es2017','es2018', 'esnext' 가능
      "module": "commonjs", //무슨 import 문법 쓸건지 'commonjs', 'amd', 'es2015', 'esnext'
      "allowJs": true, // js 파일들 ts에서 import해서 쓸 수 있는지 
      "checkJs": true, // 일반 js 파일에서도 에러체크 여부 
      "jsx": "preserve", // tsx 파일을 jsx로 어떻게 컴파일할 것인지 'preserve', 'react-native', 'react'
      "declaration": true, //컴파일시 .d.ts 파일도 자동으로 함께생성 (현재쓰는 모든 타입이 정의된 파일)
      "outFile": "./", //모든 ts파일을 js파일 하나로 컴파일해줌 (module이 none, amd, system일 때만 가능)
      "outDir": "./", //js파일 아웃풋 경로바꾸기
      "rootDir": "./", //루트경로 바꾸기 (js 파일 아웃풋 경로에 영향줌)
      "removeComments": true, //컴파일시 주석제거 
      "noEmitOnError": true, // 파일에 에러가 있을 경우 컴파일하지 않는다.
      "strict": true, //strict 관련, noimplicit 어쩌구 관련 모드 전부 켜기
      "noImplicitAny": true, //any타입 금지 여부
      "strictNullChecks": true, //null, undefined 타입에 이상한 짓 할시 에러내기 
      "strictFunctionTypes": true, //함수파라미터 타입체크 강하게 
      "strictPropertyInitialization": true, //class constructor 작성시 타입체크 강하게
      "noImplicitThis": true, //this 키워드가 any 타입일 경우 에러내기
      "alwaysStrict": true, //자바스크립트 "use strict" 모드 켜기
    
      "noUnusedLocals": true, //쓰지않는 지역변수 있으면 에러내기
      "noUnusedParameters": true, //쓰지않는 파라미터 있으면 에러내기
      "noImplicitReturns": true, //함수에서 return 빼먹으면 에러내기 
      "noFallthroughCasesInSwitch": true, //switch문 이상하면 에러내기 
     }
    }

     

    [참고]

    https://codingapple.com/unit/typescript-tsconfig-json/

    https://joshua1988.github.io/ts/config/tsconfig.html#tsc-%EB%AA%85%EB%A0%B9%EC%96%B4

    728x90

    'TypeScript' 카테고리의 다른 글

    setState를 props로 넘길 때 타입 설정  (0) 2023.08.21
    Object key를 Type으로 만들기  (0) 2023.08.17
    인터페이스(interface)  (0) 2023.04.07
    기본 타입  (0) 2022.11.28
    Primitive Types  (0) 2022.11.10

    댓글