Fix: contribution branch 반영

This commit is contained in:
yongfire38
2024-05-27 17:44:12 +09:00
parent 8c1401b6c0
commit f082637aac
47 changed files with 905 additions and 11905 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)
}