mirror of
https://github.com/Lifeforge-app/lifeforge.git
synced 2026-06-29 15:25:50 +00:00
- Updated UploadTabButton to ensure consistent namespace usage. - Modified Searchbar to include a new variant for the action button. - Adjusted GuitarWorldModal to maintain icon position consistency. - Fixed TodoListContainer to ensure proper order of props in SearchInput. - Enhanced TaskDueDate and TaskTags components for better styling and layout. - Cleaned up TaskItem component by removing unnecessary padding. - Updated AssetItem and Assets components to ensure consistent namespace usage. - Refactored Dashboard component to utilize ContextMenu for better UX. - Improved Ledgers component to ensure FAB visibility is handled correctly. - Cleaned up AssetsTable component by removing unnecessary line breaks. - Enhanced HeaderMenu and SearchBar components for consistent namespace usage. - Refactored Transactions component to improve ContextMenu integration. - Updated ScanReceiptModal and DetailItem components for consistent icon positioning. - Enhanced Wishlist components for better search input handling and namespace consistency. - Added new hooks for app routing and title management. - Created utility functions for module filtering and route building. - Updated routes configuration for better organization and clarity. - Refactored TypeScript configuration files for improved structure and readability. Former-commit-id: 86caa5de48cdd12e2e223263d4a6e00db3285d70 [formerly c0cdf91ac2eb74d45aa1aca8d33837e22266cdc9] [formerly a6c466af309181ebabfc162ae0f51a79598669a4 [formerly 976cd737557b3dfd107bfc32c354a8c9f5b8f40d]] Former-commit-id: 4e76f1f4a60df64738a84abed41d22ca6751d09c [formerly 375d0b45df2f89471119b1c629d83f56bd89e2bf] Former-commit-id: 80c64abbd712cd69e6983ac7553007d1ac48ae8d
18 lines
470 B
JSON
18 lines
470 B
JSON
{
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"skipLibCheck": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@components/*": ["./src/components/general/*"],
|
|
"@providers/*": ["./src/providers/*"],
|
|
"@hooks/*": ["./src/core/hooks/*"],
|
|
"@interfaces/*": ["./src/core/interfaces/*"],
|
|
"@utils/*": ["./src/core/utils/*"]
|
|
}
|
|
},
|
|
"include": ["vite.config.ts"]
|
|
}
|