mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-24 18:50:56 +08:00
- Reformatted keywords and files array in package.json for better readability. - Updated migration status to reflect the migration of additional components, increasing the total migrated count to 46 and reducing pending migrations to 190. - Added new components to the migration status table, including ErrorBoundary and ProviderAvatar, while removing deprecated components like ErrorTag, SuccessTag, and WarnTag.
24 lines
632 B
JSON
24 lines
632 B
JSON
{
|
|
"compilerOptions": {
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["DOM", "DOM.Iterable", "ES6"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"outDir": "./dist",
|
|
"resolveJsonModule": true,
|
|
"rootDir": "./src",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"target": "ES2020"
|
|
},
|
|
"exclude": ["node_modules", "dist", "**/*.test.*", "**/__tests__/**"],
|
|
"include": ["src/**/*"]
|
|
}
|