ploffer11 / WebRTC-Group-Chatting

WebRTC를 통한 Group Chatting 구현
0 stars 2 forks source link

common @schema import issue #11

Closed laireyx closed 1 year ago

laireyx commented 1 year ago

지금 백엔드쪽 코드들에 "@schema/"로 import하기로 한 공통의 타입들이 ../../schema와 같은 꼴로 relative import되어 common schema type이라는 것이 명확하게 드러나지 않은 부분들이 있습니다.

나중에 백엔드 코드 확인 및 수정하고, 혹시 프론트에서도 같은 문제가 있는지 확인해야 할 것 같습니다.

laireyx commented 1 year ago

@juchan1220 추가로, 채팅 기능을 구현하면서 @schema/ws가 계층 구조를 가지게 돼서, 프론트엔드에서 이후에 websocket 관련 common type을 정상적으로 가져오기 위해서는 tsconfig의 path alias를 백엔드쪽과 같게 가져가야 합니다.

"@schema/*": ["../schema/*.d", "../schema/*/index.d"]

이후에 프론트엔드쪽 tsconfig에 이렇게 적용해야 할 것 같은데 확인 바랍니다.

juchan1220 commented 1 year ago

0b3e546 커밋에서 본 이슈와 관련된 frontend 프로젝트 쪽 설정을 수정했습니다.