그러니 우리는 TypeScript compiler을 설치해야 한다.
node js
browser
typescript compiler
way1: npm으로 설치
npm i typescript -g
node_modules/.bin/tsc
tsc source.ts
way2: visual studio plugin 설치 (2017버전 이후로는 디폴트로 설치되어 있음)
let a: string; //a에는 string만 들어올 수 있다
a = "Mark"; //good
a = 39; //error!
function hello(b: number) {};
hello('Mark'); //error!