Hello World...

typescript 공부 시작 본문

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

 

 

'typescript' 카테고리의 다른 글

Simple Pagination 클라이언트  (1) 2024.01.03
Next.js13 에서 dayjs timezone 설정 후 사용해보기  (0) 2023.08.26
Comments