mirror of
https://github.com/moeru-ai/airi.git
synced 2026-08-14 08:52:42 +00:00
This pull request introduces the initial glossary for the project to improve the translation quality. Implements #2148. ### TODOs - [x] Add the definition YAML - [x] Add a generator to produce Crowdin-compatible (TBX v3) format - [x] AGENTS.md - [ ] ~Workflow~ (Split to another PR) - [ ] ~Skills~ (Same as above)
24 lines
600 B
TypeScript
24 lines
600 B
TypeScript
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
projects: [
|
|
'server/apps/api',
|
|
'apps/ui-server-auth',
|
|
'apps/stage-tamagotchi',
|
|
'packages/cap-vite',
|
|
'packages/ccc',
|
|
'packages/core-agent',
|
|
'packages/i18n',
|
|
'packages/better-ws',
|
|
'packages/plugin-sdk',
|
|
'packages/plugin-sdk-tamagotchi',
|
|
'packages/scenarios-stage-tamagotchi-browser',
|
|
'packages/scenarios-stage-tamagotchi-electron',
|
|
'packages/server-runtime',
|
|
'packages/server-sdk',
|
|
'packages/stage-shared',
|
|
],
|
|
},
|
|
})
|