forked from graphql-hive/platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
58 lines (53 loc) · 1.99 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
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["esnext", "dom"],
"baseUrl": ".",
"outDir": "dist",
"rootDir": "packages",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"importHelpers": true,
"allowJs": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"sourceMap": true,
"declaration": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"strict": true,
"paths": {
"@hive/api": ["./packages/services/api/src/index.ts"],
"@hive/service-common": ["./packages/services/service-common/src/index.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/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"],
"exclude": [
"**/node_modules/**",
"**/dist",
"**/temp",
"**/tmp",
"packages/web",
"packages/services/*-worker"
]
}