comparison mupdf-source/platform/wasm/tsconfig.json @ 3:2c135c81b16c

MERGE: upstream PyMuPDF 1.26.4 with MuPDF 1.26.7
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:44:09 +0200
parents b50eed0cc0ef
children
comparison
equal deleted inserted replaced
0:6015a75abc2d 3:2c135c81b16c
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 }