typescript 초기 설정
typescript 를 시작할 폴더 진입.
기본 설치
npm init -y
npm install typescript
npx tsc --init
//typescript 컴파일 설치.
ts -> js 파일 변경
ts는 브라우저가 인식하지 못하기 때문에 js로 변경해 주어야함.
npx tsc
tsconfig.json 파일에서 module, target 변경 가능.
ts -> js 변환 없이 node 실행 방법
npx tsc 단계를 건너뛰고 node 실행 가능!
npm install -g ts-node
ts-node ./'폴더명'