-
Notifications
You must be signed in to change notification settings - Fork 101
/
tsconfig.json
91 lines (86 loc) · 3.69 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["esnext", "dom"],
"types": ["vitest/globals"],
"baseUrl": ".",
"outDir": "dist",
"rootDir": ".",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"allowJs": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": false,
"declarationMap": false,
"resolveJsonModule": false,
"moduleResolution": "node",
"strict": true,
"paths": {
"@hive/api": ["./packages/services/api/src/index.ts"],
"@hive/api/src/modules/schema/providers/artifact-storage-reader": [
"./packages/services/api/src/modules/schema/providers/artifact-storage-reader.ts"
],
"@hive/api/src/modules/shared/providers/redis": [
"./packages/services/api/src/modules/shared/providers/redis.ts"
],
"@hive/api/src/modules/shared/providers/pub-sub": [
"./packages/services/api/src/modules/shared/providers/pub-sub.ts"
],
"@hive/service-common": ["./packages/services/service-common/src/index.ts"],
"@hive/cdn-script/artifact-handler": [
"./packages/services/cdn-worker/src/artifact-handler.ts"
],
"@hive/cdn-script/artifact-storage-reader": [
"./packages/services/cdn-worker/src/artifact-storage-reader.ts"
],
"@hive/cdn-script/cdn-token": ["./packages/services/cdn-worker/src/cdn-token.ts"],
"@hive/cdn-script/key-validation": ["./packages/services/cdn-worker/src/key-validation.ts"],
"@hive/cdn-script/is-app-deployment-active": [
"./packages/services/cdn-worker/src/is-app-deployment-active.ts"
],
"@hive/cdn-script/aws": ["./packages/services/cdn-worker/src/aws.ts"],
"@hive/server": ["./packages/services/server/src/api.ts"],
"@hive/stripe-billing": ["./packages/services/stripe-billing/src/api.ts"],
"@hive/schema": ["./packages/services/schema/src/api.ts"],
"@hive/usage-common": ["./packages/services/usage-common/src/index.ts"],
"@hive/usage-estimator": ["./packages/services/usage-estimator/src/api.ts"],
"@hive/usage": ["./packages/services/usage/src/index.ts"],
"@hive/usage-ingestor": ["./packages/services/usage-ingestor/src/index.ts"],
"@hive/rate-limit": ["./packages/services/rate-limit/src/api.ts"],
"@hive/policy": ["./packages/services/policy/src/api.ts"],
"@hive/tokens": ["./packages/services/tokens/src/api.ts"],
"@hive/webhooks": ["./packages/services/webhooks/src/api.ts"],
"@hive/emails": ["./packages/services/emails/src/api.ts"],
"@hive/storage": ["./packages/services/storage/src/index.ts"],
"@graphql-hive/yoga": ["./packages/libraries/yoga/src/index.ts"],
"@graphql-hive/apollo": ["./packages/libraries/apollo/src/index.ts"],
"@graphql-hive/envelop": ["./packages/libraries/envelop/src/index.ts"],
"@graphql-hive/external-composition": [
"./packages/libraries/external-composition/src/index.ts"
],
"@graphql-hive/core": ["./packages/libraries/core/src/index.ts"],
"@graphql-hive/core/src/client/collect-schema-coordinates": [
"./packages/libraries/core/src/client/collect-schema-coordinates.ts"
],
"@hive/usage-ingestor/src/normalize-operation": [
"./packages/services/usage-ingestor/src/normalize-operation.ts"
],
"@/*": ["./packages/web/app/src/*"],
"testkit/*": ["./integration-tests/testkit/*"]
}
},
"include": ["packages", "tsup.config.node.ts"],
"exclude": [
"**/node_modules/**",
"**/dist",
"**/temp",
"**/tmp",
"packages/web",
"packages/services/*-worker"
]
}