📚 Reference


📜 Chapter


Transpile

tsc (TypeScript Compiler)

tsconfig.json

TypeScript 개발

개발 환경 구성


1. package.json 생성

npm init -y

2. tsconfig.json 생성

tsc --init

3. 설치

4. package.json 수정

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