tsconfig.json 파일 생성
tsc --init
{
"compilerOptions": {
"target": "ESNext", // ES5:화살표 함수 없음(옛날버전), ESNext:최신버전
"module": "ESNext", // CommonJS, ESNext
"outDir": "dist", // 컴파일 된 자바스크립트 파일이 위치할 곳
"strict": true, // 타입 검사를 얼마나 엄격하게 할건지(true, false)
"moduleDetection": "force" // 전역 모듈을 개별 모듈로 변경해 줌(export{})
},
"include": ["src"] //src 모든 ts 파일 컴파일링해 줌
}