📚 Reference


📜 Chapter


컴파일 설정

tsconfig.json

개발 환경 구성


1. package.json 생성

npm init -y

2. tsconfig.json 생성

tsc --init

3. 설치

4. package.json 수정

// package.json
"scripts": {
    "start": "ts-node src/app.ts"
},