mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2026-04-19 22:43:19 -04:00
- Implemented a script to list locale folders and identify missing translation terms in English. - Added functionality to copy missing terms from Chinese translations to English. - Enhanced the script to fill in missing terms for other languages based on the updated English file. - Created a patch script for nan.h to comment out the inclusion of nan_scriptorigin.h for cross-platform compatibility.
33 lines
794 B
JSON
33 lines
794 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"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"],
|
|
"paths": {
|
|
"*": ["./node_modules/@types", "./types"]
|
|
}
|
|
}
|