forked from ardatan/graphql-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
executable file
·39 lines (33 loc) · 1 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
{
"compilerOptions": {
"incremental": true,
"outDir": "dist",
"baseUrl": ".",
"target": "es2018",
"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": {
"@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"]
}