-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodegen.config.json
More file actions
43 lines (43 loc) · 970 Bytes
/
Copy pathcodegen.config.json
File metadata and controls
43 lines (43 loc) · 970 Bytes
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
{
"schema": "./src/web-app/server/schema.graphql",
"documents": [
"./src/web-app/client/**/*.graphql",
"./src/web-app/client/**/*.gql"
],
"generates": {
"./src/web-app/server/schema.types.ts": {
"plugins": [
{ "add": "/* eslint-disable */" },
"typescript",
"typescript-operations",
"typescript-resolvers"
],
"config": {
"contextType": "./types#Context",
"useIndexSignature": true
}
},
"./src/web-app/client/gql-modules.d.ts": {
"plugins": [
{ "add": "/* eslint-disable */" },
"typescript-graphql-files-modules"
]
},
"./src/web-app/client/types.react-apollo.tsx": {
"plugins": [
{ "add": "/* eslint-disable */" },
"typescript",
"typescript-operations",
"typescript-react-apollo"
],
"config": {
"withHOC": false,
"withHooks": true,
"hooksImportFrom": "react-apollo"
}
},
"./src/web-app/client/fragmentTypes.json": {
"plugins": ["fragment-matcher"]
}
}
}