mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2026-09-23 05:05:41 -04:00
- Implemented new translation plugins: ollamaTranslate, potTranslate, reversoEmbedTranslate, sogouEmbedTranslate, tencentTranslate, transmartEmbedTranslate, volcengineTranslate, yandexEmbedTranslate, youdaoGeneralTranslate, and youdaoLlmTranslate. - Created a centralized rendererRegistry to manage translation plugins. - Defined types for plugin configuration and translation functionality in types.ts.
32 lines
791 B
JSON
32 lines
791 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react",
|
|
"noImplicitAny": false,
|
|
// "noUnusedLocals": true,
|
|
// "noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
"src/assets/lib/kookit-extra.min.mjs",
|
|
"scripts/i18n-script.js"
|
|
],
|
|
"exclude": ["utils", "src/utils/plugins/main"],
|
|
"paths": {
|
|
"*": ["./node_modules/@types", "./types"]
|
|
}
|
|
}
|