mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-24 18:50:56 +08:00
- Added support for the @modelcontextprotocol/sdk in tsconfig.node.json. - Updated import paths in provider.ts to include .js extensions. - Enhanced AgentsPage layout by integrating Navbar and Input components. - Refactored DiscoverPage to remove DialogManagerProvider and related components, simplifying the structure. - Removed unused dialog components and hooks to streamline the discover functionality. - Minor adjustments to AssistantSettings and Vercel tabs for improved code clarity.
27 lines
684 B
JSON
27 lines
684 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/*"],
|
|
"@modelcontextprotocol/sdk/*": ["node_modules/@modelcontextprotocol/sdk/dist/esm/*"]
|
|
}
|
|
}
|
|
}
|