mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-19 06:30:10 +08:00
- Add 24 new preference mappings including memory (3), note (10),
theme fonts, sidebar icons, and message settings
- Move memory prompts to shared config for reuse across processes
- Regenerate preference schemas with 6 new memory config items
- Fix math_engine mapping path (chat.message.math_engine → chat.message.math.engine)
- Update mapping stats: 175 → 199 Redux items, 197 → 203 total configs
38 lines
1.1 KiB
JSON
38 lines
1.1 KiB
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.node.json",
|
|
"include": [
|
|
"electron.vite.config.*",
|
|
"scripts",
|
|
"src/main/**/*",
|
|
"src/main/env.d.ts",
|
|
"src/preload/**/*",
|
|
"src/renderer/src/services/traceApi.ts",
|
|
"src/renderer/src/types/*",
|
|
"packages/mcp-trace/**/*",
|
|
"packages/shared/**/*",
|
|
"tests/__mocks__/**/*"
|
|
],
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"incremental": true,
|
|
"moduleResolution": "bundler",
|
|
"tsBuildInfoFile": ".tsbuildinfo/tsconfig.node.tsbuildinfo",
|
|
"types": [
|
|
"electron-vite/node",
|
|
"vitest/globals"
|
|
],
|
|
"paths": {
|
|
"@logger": ["./src/main/services/LoggerService"],
|
|
"@data/*": ["./src/main/data/*"],
|
|
"@main/*": ["./src/main/*"],
|
|
"@types": ["./src/renderer/src/types/index.ts"],
|
|
"@shared/*": ["./packages/shared/*"],
|
|
"@mcp-trace/*": ["./packages/mcp-trace/*"],
|
|
"@modelcontextprotocol/sdk/*": ["./node_modules/@modelcontextprotocol/sdk/dist/esm/*"]
|
|
},
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"useDefineForClassFields": true
|
|
}
|
|
}
|