Files
zn-ai/tsconfig.app.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

54 lines
1.2 KiB
JSON

{
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": [
"ES2020",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "preserve",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"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/*"],
},
"types": []
},
"include": [
"forge.env.d.ts",
"src/**/*.vue",
"**/*.d.ts",
"**/*.ts",
"**/*.js",
"src/permission.ts",
"electron/scripts/*.js"
]
}