mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2026-01-01 17:59:09 +08:00
- Added new UI components including Button, Command, Dialog, Popover, and Dropzone using Radix UI. - Introduced global styles with Tailwind CSS for consistent theming and design. - Updated existing components to utilize new utility functions for class name management. - Enhanced Tooltip component with inline-block display for better layout. - Updated package dependencies in package.json and yarn.lock to include new Radix and Tailwind packages.
29 lines
756 B
JSON
29 lines
756 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2021"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "./dist",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@/types": ["src/types"],
|
|
"@/utils": ["src/utils"]
|
|
},
|
|
"resolveJsonModule": true,
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ES2020"
|
|
},
|
|
"exclude": ["node_modules", "dist", "**/*.test.*", "**/__tests__/**"],
|
|
"include": ["src/**/*", "stories/**/*"]
|
|
}
|