comparison mupdf-source/platform/wasm/tsconfig.json @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 {
2 "compilerOptions": {
3 "target": "es2021",
4 "module": "nodenext",
5 "declaration": true,
6
7 "rootDir": "lib",
8 "outDir": "dist",
9
10 "strict": true,
11 "strictNullChecks": true,
12 "strictFunctionTypes": true,
13 "strictBindCallApply": true,
14 "strictPropertyInitialization": true,
15 "noImplicitThis": true,
16 "useUnknownInCatchVariables": true,
17 "alwaysStrict": true,
18 "noUnusedLocals": true,
19 "noUnusedParameters": true,
20 "exactOptionalPropertyTypes": true,
21 "noImplicitReturns": true,
22 "noFallthroughCasesInSwitch": true,
23 "noUncheckedIndexedAccess": true,
24 "noImplicitOverride": true,
25 "noPropertyAccessFromIndexSignature": true
26 },
27 "include": [
28 "lib"
29 ]
30 }