-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
tsconfig.json
38 lines (35 loc) · 1.22 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
{
"compilerOptions": {
"outDir": "dist",
"baseUrl": ".",
"target": "es2022",
"module": "esnext",
"moduleResolution": "node",
"lib": ["esnext"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"importHelpers": true,
"resolveJsonModule": true,
"sourceMap": true,
"declaration": true,
"downlevelIteration": true,
"incremental": true,
"skipLibCheck": false,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": false,
"paths": {
"@whatwg-node/cookie-store": ["packages/cookie-store/src/index.ts"],
"@whatwg-node/server": ["packages/server/src/index.ts"],
"@whatwg-node/node-fetch": ["packages/node-fetch/src/index.ts"],
"@whatwg-node/events": ["packages/events/src/index.ts"],
"@whatwg-node/disposablestack": ["packages/disposablestack/src/index.ts"],
"@e2e/*": ["e2e/*/src/index.ts"],
"fetchache": ["packages/fetchache/src/index.ts"]
}
},
"include": ["packages", "examples", "uwsUtils.d.ts", "scheduler-tracing.d.ts"],
"exclude": ["**/node_modules", "**/test-files", "**/dist", "**/e2e", "**/benchmark"]
}