패스트캠퍼스 데브캠프

김민태의 데브캠프 2기 - tsconfig.json 설치하기

vitamin3000 2024. 11. 8. 14:52

나중에 진행할 토이프로젝트 2에서 사용할 tsconfig.json 설치에 대한 방법을 기록하고자 한다.

 

 

1. 폴더 구조 생성

 

 

2. tsconfig.json 설정

 

{
    "compilerOptions": {
        "rootDir": "./src", 
        "outDir": "./build/js",
        "target": "ES6",
        "noEmitOnError": true,
        //on과 false의 차이는 Emit 배출한다
        //true인 경우 에러가 있을 때는 Emit 안한다
        "module" : "ESNext",
        "moduleResolution": "Node",
        "esModuleInterop": true,
        "lib" : ["ESNext", "DOM"],
        "strict" : true

    },
    "include":[
        "./src/**/*ts",
    ]
}