Type something to search...

03 설치삭제

1. 설치

1.1.윈도우

1
npm install –g typescript //전역설치(컴퓨터 내의 모든 프로젝트에 설치)
2
npm install typescript //로컬 설치(현재 프로젝트에만 설치)

1.2.맥

1
$ sudo npm install -g typescript //전역설치(컴퓨터 내의 모든 프로젝트에 설치)
2
$ sudo npm install typescript //로컬 설치(현재 프로젝트에만 설치)

1.3. 설치확인

1
tsc -v

2. 제거

2.1. 윈도우

1
npm uninstall -g typescript
2
npm uninstall typescript

2.2. 맥

1
$ sudo npm uninstall -g typescript
2
$ sudo npm uninstall typescript