-
-
Notifications
You must be signed in to change notification settings - Fork 815
/
tsconfig.json
executable file
·43 lines (37 loc) · 1.08 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
{
"compilerOptions": {
"incremental": true,
"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,
"suppressImplicitAnyIndexErrors": true,
"ignoreDeprecations": "5.0",
"skipLibCheck": true,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"paths": {
"cross-inspect": ["packages/inspect/src/index.ts"],
"@graphql-tools/*-loader": [
"packages/loaders/*/src/index.ts",
"packages/*-loader/src/index.ts"
],
"@graphql-tools/executor-*": ["packages/executors/*/src/index.ts"],
"@graphql-tools/*": ["packages/*/src/index.ts"]
}
},
"include": ["packages"],
"exclude": ["**/node_modules", "**/dist", "**/test-files"]
}