mirror of
https://github.com/koodo-reader/koodo-reader.git
synced 2026-06-16 11:50:41 -04:00
feat: enhance sentence splitting for CJK text in common utility refactor: update TypeScript target to ES6 in tsconfig
29 lines
752 B
JSON
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"]
|
|
}
|
|
}
|