tsconfig에 있는 property에 대해 설명한다.
"outDir": "./dist"
typescript를 js로 compile한 후에, js파일을 저장할 위치이다. (dist는 distribution의 약어이다.)
"declaration": true
d.ts 파일(Type Definition File)의 생성여부이다. true이면 outDir에 d.ts파일도 함께 생성한다.