Files
afilmory/be/apps/core/tsconfig.json
Innei 737618b46b feat(i18n): implement internationalization for UI schema and settings
- Introduced UI schema internationalization support by adding translation functions for English and Chinese.
- Updated various controllers and services to accept language headers for localized responses.
- Created new locale files for UI schema in English and Chinese, enhancing user experience for diverse audiences.
- Refactored UI schema generation to utilize translation keys for dynamic content rendering.

Signed-off-by: Innei <tukon479@gmail.com>
2025-11-18 20:27:14 +08:00

33 lines
772 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "esnext",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "bundler",
"verbatimModuleSyntax": true,
"types": ["node"],
"paths": {
"core": ["./src"],
"core/*": ["./src/*"]
},
"resolveJsonModule": true,
"allowJs": true,
"strict": true,
"noImplicitAny": false,
"declaration": false,
"outDir": "./dist",
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
},
"include": ["src/**/*", "*.d.ts"],
"exclude": []
}