설치삭제

1. 설치

1.1.윈도우

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

1.2.맥

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

1.3. 설치확인

tsc -v

2. 제거

2.1. 윈도우

npm uninstall -g typescript
npm uninstall typescript

2.2. 맥

$ sudo npm uninstall -g typescript
$ sudo npm uninstall typescript

댓글 남기기