-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
44 lines (44 loc) · 1.49 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
{
"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"],
"@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-*": ["./packages/transports/*/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"
]
}
},
"include": [
"./eslint.config.js",
"./vitest.config.ts",
"./vitest.projects.ts",
"./internal/**/src",
"./packages/**/src",
"./packages/**/tests",
"./packages/**/scripts",
"./packages/**/rollup.config.*",
"./e2e"
]
}