Assist_Design/knip.json
barsa 0f6bae840f feat: add eligibility check flow with form, OTP, and success steps
- Implemented FormStep component for user input (name, email, address).
- Created OtpStep component for OTP verification.
- Developed SuccessStep component to display success messages based on account creation.
- Introduced eligibility-check.store for managing state throughout the eligibility check process.
- Added commitlint configuration for standardized commit messages.
- Configured knip for workspace management and project structure.
2026-01-15 11:28:25 +09:00

19 lines
441 B
JSON

{
"workspaces": {
"apps/portal": {
"entry": ["src/app/**/page.tsx", "src/app/**/layout.tsx", "src/app/**/route.ts"],
"project": ["src/**/*.{ts,tsx}"]
},
"apps/bff": {
"entry": ["src/main.ts"],
"project": ["src/**/*.ts"]
},
"packages/domain": {
"entry": ["*/index.ts"],
"project": ["**/*.ts"]
}
},
"ignore": ["**/dist/**", "**/*.d.ts"],
"ignoreDependencies": ["@types/*"]
}