-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
60 lines (52 loc) · 1.49 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"compilerOptions": {
"paths": {
"@fe-3rd/*": ["./src/3rd/*"],
"@fe-cpl/*": ["./src/lib/compiling/*"],
"@fe-edt/*": ["./src/lib/editor/*"],
"@fe-lib/*": ["./src/lib/*"],
"@fe-pdf.ts-src/*": ["./src/pdf/pdf.ts-src/*"],
"@fe-pdf.ts-test/*": ["./src/pdf/pdf.ts-test/*"],
"@fe-pdf.ts-web/*": ["./src/pdf/pdf.ts-web/*"],
"@fe-src/*": ["./src/*"],
"@wretch": ["./src/3rd/wretch-2.9.0/dist/index.js"],
"@xstate": ["./src/3rd/xstate-5.17.1/xstate.ts"],
"@zod": ["./src/3rd/zod-3.23.8/lib/index.mjs"]
},
"rootDir": "src",
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"target": "ES2022",
"lib": [
"ESNext",
"DOM",
"DOM.Iterable"
],
"skipLibCheck": true,
"strict": true,
"exactOptionalPropertyTypes": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"isolatedModules": true,
"outDir": "gen",
"sourceMap": true,
"allowJs": true,
"checkJs": false,
"allowTsImport": true,
"preprocessorFile": "src/global.ts",
"unaliasImportPaths": true
},
"files": [
"src/pdf/pdf.ts-web/viewer.ts",
"src/pdf/pdf.ts-src/pdf.image_decoders.ts",
"src/pdf/pdf.ts-src/pdf.sandbox.ts",
"src/pdf/pdf.ts-src/pdf.scripting.ts",
"src/pdf/pdf.ts-src/pdf.worker.ts",
"src/pdf/pdf.ts-src/core/xfa/formcalc_parser.ts",
"src/pdf/pdf.ts-test/driver.ts"
],
"include": [
"src/3rd/wretch-2.9.0/**/*"
]
}