cherry-studio/i18next.config.ts
icarus 311a229ab7 style: change biome sort order to natural and clean up i18next config
- Update biome.jsonc to use natural sort order for keys
- Clean up i18next.config.ts formatting and remove trailing newline
2025-10-23 21:50:00 +08:00

10 lines
241 B
TypeScript

import { defineConfig } from 'i18next-cli'
export default defineConfig({
locales: ['en-us', 'zh-cn', 'zh-tw'],
extract: {
input: 'src/renderer/src/**/*.{ts,tsx}',
output: 'src/renderer/src/i18n/locales/{{language}}.json'
}
})