우선, typescript를 global로 설치한다. yarn global add typescript npm install -g typescript 설치 후 아래의 명령어를 입력하면 tsconfig.json 파일이 자동 생성된다. npx tsc --init tsconfig란? Typescript로 작성된 코드는 Javascript로 변환해줄 트랜스파일러(컴파일러)가 필요하며 이런 컴파일 과정에서 사용자가 필요한 여러 옵션을 설정한 파일이 tsconfig.json 파일이다. tsconfig.json 컴파일 옵션 정리 { "compilerOptions": { /* 기본 옵션 */ "target": "es5", /* 사용할 특정 ECMAScript 버전 설정 (예시, es5 지정 시 화살표 함수는 일반 fun..