mirror of
https://github.com/Afilmory/afilmory
synced 2026-04-24 23:05:05 +00:00
- 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>
33 lines
772 B
JSON
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": []
|
|
}
|