-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
78 lines (78 loc) · 2.91 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"extends": "@tsconfig/strictest/tsconfig.json",
"compilerOptions": {
// tsc only for type checking
"noEmit": true,
// pkgroll will take care of building, we use the most modern JS while coding
"module": "esnext",
"moduleResolution": "bundler",
"target": "esnext",
// TODO: set to true once dependencies (like yoga and whatwg server) add `| undefined` in addition to `?`
"exactOptionalPropertyTypes": false,
// packages
"paths": {
"@internal/testing": ["./internal/testing/src/index.ts"],
"@internal/e2e": ["./internal/e2e/src/index.ts"],
"@internal/testing/to-be-similar-string": [
"./internal/testing/src/to-be-similar-string.ts"
],
"@internal/testing/to-be-similar-gql-doc": [
"./internal/testing/src/to-be-similar-gql-doc.ts"
],
"@internal/testing/fixtures/*": ["./internal/testing/fixtures/*"],
"@graphql-hive/gateway": ["./packages/gateway/src/index.ts"],
"@graphql-hive/gateway-runtime": ["./packages/runtime/src/index.ts"],
"@graphql-mesh/fusion-runtime": [
"./packages/fusion-runtime/src/index.ts"
],
"@graphql-mesh/transport-common": [
"./packages/transports/common/src/index.ts"
],
"@graphql-mesh/transport-http": [
"./packages/transports/http/src/index.ts"
],
"@graphql-mesh/transport-http-callback": [
"./packages/transports/http-callback/src/index.ts"
],
"@graphql-mesh/transport-ws": ["./packages/transports/ws/src/index.ts"],
"@graphql-mesh/hmac-upstream-signature": [
"./packages/plugins/hmac-upstream-signature/src/index.ts"
],
"@graphql-mesh/plugin-opentelemetry": [
"./packages/plugins/opentelemetry/src/index.ts"
],
"@graphql-mesh/plugin-prometheus": [
"./packages/plugins/prometheus/src/index.ts"
],
"@graphql-tools/batch-delegate": [
"./packages/batch-delegate/src/index.ts"
],
"@graphql-tools/batch-execute": ["./packages/batch-execute/src/index.ts"],
"@graphql-tools/delegate": ["./packages/delegate/src/index.ts"],
"@graphql-tools/federation": ["./packages/federation/src/index.ts"],
"@graphql-tools/stitch": ["./packages/stitch/src/index.ts"],
"@graphql-tools/stitching-directives": [
"./packages/stitching-directives/src/index.ts"
],
"@graphql-tools/wrap": ["./packages/wrap/src/index.ts"],
"@graphql-tools/executor-*": ["./packages/executors/*/src/index.ts"],
"@graphql-hive/gateway-abort-signal-any": [
"./packages/abort-signal-any/src/index.ts"
]
}
},
"include": [
"./.yarn/custom-plugins",
"./eslint.config.js",
"./vitest.config.ts",
"./vitest.projects.ts",
"./internal/**/src",
"./internal/**/fixtures",
"./packages/**/src",
"./packages/**/tests",
"./packages/**/scripts",
"./packages/**/rollup.config.*",
"./e2e",
"./bench"
]
}