몽땅뚝딱 개발자

[TypeScript] 설정파일 본문

Development/Typescript

[TypeScript] 설정파일

레오나르도 다빈츠 2022. 6. 6. 12:55

📄 tsconfig.js

{
  "compilerOptions": {
    "allowJs": true,
    "checkJs": true,
    // 모든 타입에 대해 최소한 any라도 지정해야한다는 옵션
    "noImplicitAny": true
  }
}

/**
checkJs는
// @ts-check
와 같은 기능을 한다.
*/

 

 

다른 옵션은 여기서 확인해보자!

 

TSConfig Reference - Docs on every TSConfig option

From allowJs to useDefineForClassFields the TSConfig reference includes information about all of the active compiler flags setting up a TypeScript project.

www.typescriptlang.org

 

Comments