마이그레이션 후엔 npm run start 시 ts-node를 씀

ts-node에서 paths, baseUrl 적용되게하려면 아래와 같이 해야됨

paths and baseUrl

You can use ts-node together with tsconfig-paths to load modules according to the paths section in tsconfig.json.

// tsconfig.json
{
	"ts-node": {
    // Do not forget to `npm i -D tsconfig-paths`
    "require": ["tsconfig-paths/register"]
  }
}