forked from ardatan/graphql-mesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
47 lines (43 loc) · 1.63 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
{
"compilerOptions": {
"outDir": "dist",
"baseUrl": ".",
"target": "es2018",
"module": "esnext",
"moduleResolution": "node",
"lib": ["esnext"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"importHelpers": true,
"resolveJsonModule": true,
"sourceMap": true,
"declaration": true,
"noImplicitAny": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"skipLibCheck": true,
"allowJs": true,
"paths": {
"@graphql-mesh/cli": ["packages/cli/src/index"],
"@graphql-mesh/runtime": ["packages/runtime/src/index"],
"@graphql-mesh/config": ["packages/config/src/index"],
"@graphql-mesh/types": ["packages/types/src/index"],
"@graphql-mesh/utils": ["packages/utils/src/index"],
"@graphql-mesh/store": ["packages/store/src/index"],
"@graphql-mesh/http": ["packages/http/src/index"],
"@graphql-mesh/cache-*": ["packages/cache/*/src/index"],
"@graphql-mesh/transform-*": ["packages/transforms/*/src/index"],
"@graphql-mesh/merger-*": ["packages/mergers/*/src/index"],
"@graphql-mesh/plugin-*": ["packages/plugins/*/src/index"],
"@graphql-mesh/cross-helpers": ["packages/cross-helpers/index"],
"@graphql-mesh/string-interpolation": ["packages/string-interpolation/src/index"],
"@graphql-mesh/*": ["packages/handlers/*/src/index"],
"json-machete": ["packages/json-machete/src/index"],
"@omnigraph/*": ["packages/loaders/*/src/index"]
}
},
"include": ["./declarations.d.ts", "packages"],
"exclude": ["**/node_modules", "**/dist"]
}