chore: restructure project and add i18n support

- Reorganize project structure with new electron and shared directories
- Add comprehensive i18n support with Chinese, English, and Japanese locales
- Update build configurations and TypeScript paths for new structure
- Add various UI components including chat interface and task management
- Include Windows release binaries and localization files
- Update dependencies and fix import paths throughout the codebase
This commit is contained in:
duanshuwen
2026-04-06 14:39:06 +08:00
parent e76b034d50
commit 6615d11dd6
311 changed files with 823682 additions and 4460 deletions

View File

@@ -8,9 +8,9 @@
"baseUrl": "./",
"paths": {
"@assets/*": ["src/assets/*"],
"@common/*": ["src/common/*"],
"@service/*": ["src/main/service/*"],
"@locales/*": ["locales/*"]
"@lib/*": ["src/lib/*"],
"@service/*": ["electron/service/*"],
"@locales/*": ["src/i18n/locales/*"]
}
}
}