mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-28 05:11:24 +08:00
feat: 为插件系统实现中间件 feat: 实现自定义的思考中间件 - Updated package.json and related files to reflect the correct naming convention for the @cherrystudio/ai-core package. - Adjusted import paths in various files to ensure consistency with the new package name. - Enhanced type resolution in tsconfig.web.json to align with the updated package structure.
23 lines
576 B
JSON
23 lines
576 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/"]
|
|
}
|
|
}
|
|
}
|