Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
Tags
- jest
- #cloudfront #s3 #html 확장자 없애기
- ESLint
- NPM
- git pair
- TypeScript
- url #querystring
- 기후변화
- OOP
- 클로저
- this
- lightsail nodejs apache
- 객체참조 #객체
Archives
- Today
- Total
Hello World...
typescript 공부 시작 본문
# 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