Files
cozsweet-frontend-nextjs/barrelsby.json
T
admin 759481b621 refactor(schemas): group network schemas by direction
Move request and response schemas into matching subdirectories, extract the shared chat lock type, and update barrels and imports without changing wire formats.
2026-07-14 15:12:19 +08:00

52 lines
1.5 KiB
JSON

{
"exclude": [
"__tests__",
"\\.test\\.ts$",
"\\.test\\.tsx$",
"\\.spec\\.ts$",
"\\.spec\\.tsx$",
"lottie-message-bubble\\.tsx$",
"stripe-payment-dialog\\.tsx$"
],
"directory": [
"./src/data/repositories",
"./src/data/repositories/interfaces",
"./src/data/services/api",
"./src/data/dto/auth",
"./src/data/dto/chat",
"./src/data/dto/metrics",
"./src/data/dto/user",
"./src/data/schemas/auth",
"./src/data/schemas/auth/request",
"./src/data/schemas/auth/response",
"./src/data/schemas/chat",
"./src/data/schemas/chat/request",
"./src/data/schemas/chat/response",
"./src/data/schemas/metrics",
"./src/data/schemas/metrics/request",
"./src/data/schemas/payment",
"./src/data/schemas/payment/request",
"./src/data/schemas/payment/response",
"./src/data/schemas/private-room",
"./src/data/schemas/private-room/request",
"./src/data/schemas/private-room/response",
"./src/data/schemas/user",
"./src/data/storage/app",
"./src/data/storage/auth",
"./src/data/storage/chat",
"./src/data/storage/user",
"./src/app/_components/core",
"./src/app/auth/components",
"./src/app/chat/components",
"./src/app/sidebar/components",
"./src/app/splash/components",
"./src/app/subscription/components",
"./src/hooks",
"./src/integrations",
"./src/utils",
"./src/stores/auth",
"./src/stores/chat",
"./src/stores/user"
]
}