mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-24 18:50:56 +08:00
- Updated component paths in components.json for better organization. - Added 'motion' library to package.json for animations. - Refactored TypeScript configuration to include new renderer paths. - Implemented new StoreContent and StoreSidebar components for improved store layout. - Integrated store categories and items with filtering capabilities. - Enhanced UI with Tailwind CSS animations and styles for a better user experience.
26 lines
592 B
JSON
26 lines
592 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
|
|
"include": [
|
|
"electron.vite.config.*",
|
|
"src/main/**/*",
|
|
"src/preload/**/*",
|
|
"src/main/env.d.ts",
|
|
"src/renderer/src/types/*",
|
|
"packages/shared/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"moduleResolution": "bundler",
|
|
"types": [
|
|
"electron-vite/node"
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@main/*": ["src/main/*"],
|
|
"@types": ["src/renderer/src/types/index.ts"],
|
|
"@shared/*": ["packages/shared/*"],
|
|
"@renderer/*": ["src/renderer/src/*"]
|
|
}
|
|
}
|
|
}
|