1. ts-node 설치하기: 먼저, 프로젝트 폴더에서 `ts-node`와 `typescript`를 설치해야 합니다. 일반적으로 `npm`을 사용하여 설치합니다. ```bash npm install --save-dev ts-node typescript ``` 2. TypeScript 환경 설정하기: TypeScript 컴파일러 옵션을 설정하기 위해 기본 설정 파일인 `tsconfig.json`을 생성합니다. 이 파일에서 컴파일러 옵션을 정의할 수 있습니다. ```json { "compilerOptions": { "target": "es6", "module": "commonjs", "strict": true, "esModuleInterop": true, "outDir": "./dist" }, "includ..