Files
koodo-reader/tsconfig.json
troyeguo 4d4fb6965c fix: improve voice configuration handling in TextToSpeech component
feat: enhance sentence splitting for CJK text in common utility
refactor: update TypeScript target to ES6 in tsconfig
2026-03-05 11:01:39 +08:00

29 lines
752 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"],
"exclude": ["utils"],
"paths": {
"*": ["./node_modules/@types", "./types"]
}
}