03 설치삭제
1. 설치
1.1.윈도우
1npm install –g typescript //전역설치(컴퓨터 내의 모든 프로젝트에 설치)2npm install typescript //로컬 설치(현재 프로젝트에만 설치)1.2.맥
1$ sudo npm install -g typescript //전역설치(컴퓨터 내의 모든 프로젝트에 설치)2$ sudo npm install typescript //로컬 설치(현재 프로젝트에만 설치)1.3. 설치확인
1tsc -v2. 제거
2.1. 윈도우
1npm uninstall -g typescript2npm uninstall typescript2.2. 맥
1$ sudo npm uninstall -g typescript2$ sudo npm uninstall typescript