- Add Next.js application with app router and API routes for brands, categories, fonts, styles, and sync management - Set up authentication system with NextAuth configuration and protected routes - Create admin dashboard with management interfaces for brands, categories, fonts, and styles - Implement database layer with Drizzle ORM and SQLite with migration files - Add public pages for font browsing, documentation, and login functionality - Configure development tools including ESLint, Prettier, Husky pre-commit hooks, and lint-staged - Set up TypeScript configuration with strict type checking and path aliases - Create reusable UI component library using shadcn/ui and Radix primitives - Implement service layer for business logic (brands, categories, fonts, styles, sync, CSS generation) - Add utility functions for authentication, error handling, logging, and performance monitoring - Configure Next.js with custom middleware for request handling and routing - Set up testing infrastructure with Vitest and test files for admin and docs pages - Add project documentation including implementation summaries and API guides - Configure build tools with PostCSS and Tailwind CSS for styling - Initialize database with seed data and connection utilities - Add environment configuration and public assets (favicon, icons, manifest)
31 lines
760 B
JSON
31 lines
760 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@/components/*": ["./src/components/*"],
|
|
"@/lib/*": ["./src/lib/*"],
|
|
"@/types/*": ["./src/types/*"],
|
|
"@/hooks/*": ["./src/hooks/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|