[S2] 설치 및 설정

https://github.com/OneMoreBottlee/TypeScript-Master/tree/main/S2

Node.js 설치 후

npm install -g typescript

설치가 안된다면 TypeScript Playground 에서…

TS Playground - An online editor for exploring TypeScript and JavaScript

TS 용도

.ts 파일에서 코드 작성 중 에러가 발생하면 즉각적으로 확인된다 ⇒ ts는 정적 타입 검사기의 역할을 함

.ts 파일에서 작업한 코드를 tsc 파일이름 으로 컴파일링하면 js 파일이 생성된다. ⇒ ts는 js로 컴파일함

Last updated

Was this helpful?