Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions checkmo/tsconfig.json → tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"checkmo/.next/types/**/*.ts",
"checkmo/.next/dev/types/**/*.ts",
Comment on lines +29 to +30

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

tsconfig.json 파일의 include 경로가 잘못 수정된 것 같습니다. 프로젝트가 checkmo 하위 디렉토리에서 루트로 이동되었으므로, .next 디렉토리 경로에서 checkmo/ 접두사를 제거해야 합니다. 이 경로가 잘못되면 Next.js가 생성하는 타입들을 TypeScript 컴파일러가 찾지 못해 빌드 오류나 타입 관련 문제가 발생할 수 있습니다.

    ".next/types/**/*.ts",
    ".next/dev/types/**/*.ts"

"**/*.mts"
],
"exclude": ["node_modules"]
Expand Down