mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-27 21:01:32 +08:00
- Updated version in package.json to 1.0.0-alpha.2. - Added new path mapping for @cherrystudio/ai-core in tsconfig.web.json. - Refactored export paths in tsdown.config.ts and index.ts for consistency. - Cleaned up type exports in index.ts and types.ts for better organization.
24 lines
644 B
JSON
24 lines
644 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.web.json",
|
|
"include": [
|
|
"src/renderer/src/**/*",
|
|
"src/preload/*.d.ts",
|
|
"local/src/renderer/**/*",
|
|
"packages/shared/**/*",
|
|
"packages/aiCore/src/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@renderer/*": ["src/renderer/src/*"],
|
|
"@shared/*": ["packages/shared/*"],
|
|
"@types": ["src/renderer/src/types/index.ts"],
|
|
"@cherrystudio/ai-core": ["packages/aiCore/src/index.ts"],
|
|
"@cherrystudio/ai-core/*": ["packages/aiCore/src/*"]
|
|
}
|
|
}
|
|
}
|