-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrelay.config.json
60 lines (60 loc) · 1.71 KB
/
relay.config.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
{
"root": ".",
"excludes": ["**/node_modules/**", "**/__mocks__/**", "**/__gen__/**"],
"sources": {
"apps/web/src": "web",
"apps/mobile-pwa/src": "mobile-pwa",
"plugins/slack/src": "plugin-slack"
},
"projects": {
"web": {
"schema": "packages/relay/schema.graphql",
"output": "apps/web/src/relay/__gen__",
"language": "typescript",
"schemaExtensions": ["apps/web/src/relay/local"],
"eagerEsModules": true,
"noFutureProofEnums": true,
"requireCustomScalarTypes": true,
"customScalarTypes": {
"Date": "string",
"DateTime": "string",
"PositiveInt": "number",
"JSON": "JsonValue",
"JSONObject": "Record<string, any>",
"Time": "string"
}
},
"mobile-pwa": {
"schema": "packages/relay/schema.graphql",
"output": "apps/mobile-pwa/src/relay/__gen__",
"language": "typescript",
"eagerEsModules": true,
"noFutureProofEnums": true,
"requireCustomScalarTypes": true,
"customScalarTypes": {
"Date": "string",
"DateTime": "string",
"PositiveInt": "number",
"JSON": "JsonValue",
"JSONObject": "Record<string, any>",
"Time": "string"
}
},
"plugin-slack": {
"schema": "packages/relay/schema.graphql",
"output": "plugins/slack/src/relay/__gen__",
"language": "typescript",
"eagerEsModules": true,
"noFutureProofEnums": true,
"requireCustomScalarTypes": true,
"customScalarTypes": {
"Date": "string",
"DateTime": "string",
"PositiveInt": "number",
"JSON": "JsonValue",
"JSONObject": "Record<string, any>",
"Time": "string"
}
}
}
}