-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcodegen.json
executable file
·49 lines (47 loc) · 973 Bytes
/
codegen.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
{
"overwrite": true,
"config": {
"strict": true,
"namingConvention": {
"typeNames": "pascalCase",
"enumValues": "keep"
},
"scalars": {
"ID": "string | number"
},
"maybeValue": "T"
},
"generates": {
"src/ui/generated/shop-types.ts": {
"schema": "http://localhost:3000/shop-api",
"plugins": [
{
"add": {
"content": "/* eslint-disable */"
}
},
"typescript",
"typescript-compatibility"
]
},
"src/ui/generated/ui-types.ts": {
"schema": "http://localhost:3000/admin-api",
"documents": "src/ui/**/*.graphql.ts",
"plugins": [
{
"add": {
"content": "/* eslint-disable */"
}
},
"typescript",
"typescript-compatibility",
"typescript-operations"
],
"config": {
"scalars": {
"ID": "string"
}
}
}
}
}