커밋4. 포털 실행 방법 ts-node로 시작하게 변화: 실행 속도 향상

This commit is contained in:
kimilguk
2023-06-06 13:31:22 +09:00
parent 3af8a46d83
commit 96098869a8
3 changed files with 40 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
{
"extends": "./tsconfig.json", // 기본설정을 포함한다
"compilerOptions": {
"module": "commonjs", // commonJs 사용하도록 override
"outDir": "dist", // 빌드 파일 경로 (production mode)
"noEmit": false // 서버에 대한 결과 파일을 내보내지 않음 (production mode)
},
"include": ["server"] // server/ 디렉토리 아래에 있는 파일만 컴파일 (production mode)
}