개발환경 잡기

yarn add http-server
yarn add -D typescript @types/http-server
yarn tsc --init

tsconfig.json

{
  "compilerOptions": {
    "target": "ES5",
    "module": "ESNext",
    
    "rootDir": "src",
    "outDir": "dist",
    "strict": true,
    "sourceMap": true,

    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true
  },
}

Compiling

yarn tsc -w

-w 변경사항을 바로 컴파일한다.

package.json

"scripts": {
	  "start": "http-server ./ -o ./public -c-1"
},

2개의 터미널을 사용하여 각각 적용하자

yarn tsc -w
yarn start

START Vanilla-TS