Files
zn-ai/tsconfig.json
duanshuwen e77c815a86 feat: add new stores for cron, locale, providers, script, shared data, skills, and user info
- Implemented `cron` store to manage scheduled tasks with CRUD operations.
- Created `locale` store for language settings with persistence and system language detection.
- Added `providers` store to handle provider accounts and configurations with API interactions.
- Developed `script` store for managing automation scripts, including recording and execution.
- Introduced `sharedStore` for managing shared data across components.
- Established `skills` store for fetching, installing, and managing skills from a marketplace.
- Created `userinfo` store for user authentication and session management.

chore: update path aliases from `@store` to `@stores` in TypeScript configuration and Vite config
2026-04-15 21:49:25 +08:00

26 lines
667 B
JSON

{
"files": [],
"references": [
{"path": "./tsconfig.app.json"},
{"path": "./tsconfig.config.json"}
],
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@src/*": ["src/*"],
"@api/*": ["src/api/*"],
"@shared/*": ["src/shared/*"],
"@stores/*": ["src/stores/*"],
"@constant/*": ["src/constant/*"],
"@utils/*": ["src/utils/*"],
"@lib/*": ["src/lib/*"],
"@electron/*": ["electron/*"],
"@service/*": ["electron/service/*"],
"@locales/*": ["src/i18n/locales/*"],
"@hooks/*": ["src/hooks/*"],
"@components/*": ["src/components/*"],
"@assets/*": ["src/assets/*"]
}
}
}