forked from graphql-hive/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
73 lines (68 loc) · 2.81 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
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["esnext", "dom"],
"types": ["vitest/globals"],
"baseUrl": ".",
"outDir": "dist",
"rootDir": "packages",
"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/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/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/client": ["./packages/libraries/client/src/index.ts"],
"@graphql-hive/external-composition": [
"./packages/libraries/external-composition/src/index.ts"
],
"@graphql-hive/core": ["./packages/libraries/core/src/index.ts"],
"@/*": ["./packages/web/app/src/*"]
}
},
"include": ["packages", "tsup.config.node.ts"],
"exclude": [
"**/node_modules/**",
"**/dist",
"**/temp",
"**/tmp",
"packages/web",
"packages/services/*-worker"
]
}