-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodegen.json
60 lines (58 loc) · 1.27 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
{
"overwrite": true,
"schema": "./src/schema.graphql",
"documents": ["./src/**/*.requests.{ts,tsx}"],
"generates": {
"./src/api/types.ts": {
"plugins": [
"@graphql-codegen/typescript",
{
"add": {
"content": "/* eslint-disable */\n"
}
}
],
"config": {
"skipTypename": true,
"enumsAsTypes": true,
"scalars": {
"DateTime": "string"
}
}
},
"./src/api/possibleTypes.ts": {
"plugins": [
"fragment-matcher",
{
"add": {
"content": "/* eslint-disable */\n"
}
}
],
"config": { "useExplicitTyping": true }
},
"./": {
"preset": "near-operation-file",
"presetConfig": {
"folder": "graphql",
"baseTypesPath": "./src/api/types.ts",
"extension": ".gql.ts"
},
"plugins": [
"@graphql-codegen/typescript-operations",
"@graphql-codegen/typescript-react-apollo",
{
"add": {
"content": "/* eslint-disable */\n"
}
}
],
"config": {
"skipTypeNameForRoot": true,
"skipTypename": true,
"withHooks": true,
"reactApolloVersion": 3
}
}
}
}