typescript

typescript 공부 시작

FaustK 2022. 10. 22. 18:08
# typescript 전역 설치
npm install -g typescript

# node project 생성
npm init

# tsconfig.json 생성
npx tsc --init

# 자바스크립트 파일도 사용 가능하게 하기
tsconfig.json -> allowJs: true

# ts -> js 파일로 변환
# 전체
npx tsc

# 부분
npx tsc app.ts

# ts-node 로 타입스크립트 실행하기
npm install -g ts-node
ts-node app.ts

 

- 타입스크립트 핸드북

https://www.typescriptlang.org/ko/docs/handbook/intro.html

 

Handbook - The TypeScript Handbook

Your first step to learn TypeScript

www.typescriptlang.org