mirror of
https://github.com/SamyRai/tercul-frontend.git
synced 2025-12-27 04:51:34 +00:00
- Enhanced annotation system with improved inline editing - Updated author components with new card and header designs - Improved reading view with enhanced line numbering and controls - Added new blog management features and tag management - Updated UI components with improved accessibility and styling - Enhanced search functionality with better filtering - Added new dashboard features and activity feeds - Improved translation selector and work comparison tools - Updated GraphQL integration and API hooks - Enhanced responsive design and mobile experience
28 lines
798 B
JSON
28 lines
798 B
JSON
{
|
|
"include": ["client/src/**/*", "shared/**/*", "server/**/*"],
|
|
"exclude": ["node_modules", "build", "dist", "**/*.test.ts"],
|
|
"compilerOptions": {
|
|
"incremental": true,
|
|
"tsBuildInfoFile": "./node_modules/typescript/tsbuildinfo",
|
|
"noEmit": true,
|
|
"module": "ESNext",
|
|
"strict": true,
|
|
"lib": ["esnext", "dom", "dom.iterable"],
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"allowImportingTsExtensions": true,
|
|
"moduleResolution": "bundler",
|
|
"baseUrl": ".",
|
|
"types": ["node", "vite/client", "react", "react-dom"],
|
|
"paths": {
|
|
"@/*": ["./client/src/*"],
|
|
"@shared/*": ["./shared/*"],
|
|
"@assets/*": ["./attached_assets/*"],
|
|
"@/shared/*": ["./shared/*"],
|
|
"@/hooks/*": ["./client/src/hooks/*"],
|
|
"@/api/*": ["./client/src/lib/api/*"]
|
|
}
|
|
}
|
|
}
|