fix: frontend custom server 삭제, 회원가입 수정

This commit is contained in:
shinmj
2021-12-29 14:00:24 +09:00
parent 5582834ab7
commit 9123b92e92
10 changed files with 97 additions and 90 deletions

View File

@@ -1,10 +0,0 @@
{
"extends": "./tsconfig.json", // 기본설정을 포함한다
"compilerOptions": {
"module": "commonjs", // commonJs 사용하도록 override
"outDir": "build", // 빌드 파일 경로 (production mode)
"noEmit": false // 서버에 대한 결과 파일을 내보내지 않음 (production mode)
},
"include": ["server"] // server/ 디렉토리 아래에 있는 파일만 컴파일 (production mode)
}
//기본적으로 사용하는 모듈은 esnext인데 express는 commonJs를 사용하므로 module을 override 해 주어야 한다.