fix: API 빌드 출력 경로 수정 및 gitignore 정리 - #387
Open
kimjihyo wants to merge 1 commit into
Open
Conversation
Contributor
📝 WalkthroughWalkthroughTypeScript 빌드 아티팩트 삭제, .gitignore에 빌드 출력 무시 규칙 추가, apps/api의 Dockerfile 및 tsconfig.json에서 빌드 출력 경로 및 타입 패키지 경로를 dist로 변경하는 수정이 포함되어 있습니다. Changes
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
kimjihyo
marked this pull request as ready for review
February 5, 2026 14:34
kimjihyo
requested review from
AYEOOON,
dltnwjd308,
rwaeng and
vcz-ruso
as code owners
February 5, 2026 14:34
Collaborator
|
커밋 내역이 몇 개 빠진 것 같습니다..! |
Collaborator
Author
어 그러게요... ㅎㅎㅎ 이 따 집가서 커밋 수정 해놓을게여 |
- @repo/types 경로를 src에서 dist로 변경하여 모듈 해석 충돌 해결 - Dockerfile의 실행 경로를 dist/main.js로 수정 - 빌드 아티팩트(migrations, types/src)를 gitignore에 추가 - tsconfig.tsbuildinfo를 버전 관리에서 제거
kimjihyo
force-pushed
the
fix/api-build-output-path
branch
from
February 5, 2026 15:38
c06147e to
36e43ba
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔸 작업 내용
🔸 참고
문제 상황
pnpm dev 실행 시 다음과 같은 에러가 발생했습니다:
원인 분석
packages/types의 tsconfig에 composite: true 옵션이 설정되어 있어, TypeScript가 프로젝트 참조(Project References) 모드로 동작했습니다.
이 상태에서 API의 tsconfig.json에서 @repo/types를 소스 파일(packages/types/src)로 직접 참조하고 있었기 때문에:
해결 방법
Summary by CodeRabbit
릴리스 노트
참고: 사용자 기능에는 영향이 없으며 내부 빌드/배포 정리 작업입니다.