[현준배] sprint11#192
Open
junbaehyun wants to merge 2 commits intocodeit-sprint-fullstack:next-현준배from
Hidden character warning
The head ref may contain hidden characters: "next-\ud604\uc900\ubc30-sprint11"
Open
Conversation
added 2 commits
December 20, 2024 11:34
json9512
suggested changes
Dec 25, 2024
json9512
left a comment
There was a problem hiding this comment.
공통
- api (서버)와 web(프론트) 모두 하나의 디렉토리 안에서 관리 중이신데, 이게 아니라 api는 backend repo로 PR 올리셔야하고, web은 frontend repo로 PR 올리셔야 합니다! (둘을 나눠주세요)
- node_modules는 .gitignore에 추가해서 git에 올리지 않도록 해주세요
- 그 외에는 아직 스프린트 미션을 하신건 아닌 것 같습니다
There was a problem hiding this comment.
@junbaehyun 이건 .gitignores에 포함 시켜서 git에서 제거해주세요
작업 방향스프린트 미션 자체가 조금 어려우시다면, 참고해보세요.
typescript로 전환하는것은 아래 리소스 참고해주시면 됩니다 |
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.
요구사항
기본 요구사항
공통
Github에 위클리 미션 PR을 만들어 주세요.
React 및 Express를 사용해 진행합니다.
TypeScript를 활용해 프로젝트의 필요한 곳에 타입을 명시해 주세요.
any타입의 사용은 최소화해 주세요.복잡한 객체 구조나 배열 구조를 가진 변수에 인터페이스 또는 타입 별칭을 사용하세요.
Union, Intersection, Generics 등 고급 타입을 적극적으로 사용해 주세요.
타입 별칭 또는 유틸리티 타입을 사용해 타입 복잡성을 줄여주세요.
타입스크립트 컴파일러가 에러 없이 정상적으로 작동해야 합니다.
프론트엔드
백엔드
tsconfig.json파일을 생성하고, 필요한 컴파일러 옵션을 설정해야 합니다. (예:outDir).package.json에 설정해 주세요. (예: 빌드 및 개발 서버 실행 명령어).ts-node와nodemon을 사용하여 개발 환경을 구성합니다.nodemon과 함께ts-node를 사용하여. ts파일이 변경될 때 서버를 자동으로 재시작하도록 설정합니다.declare를 사용하여 타입을 오버라이드하거나 확장합니다.