-
Notifications
You must be signed in to change notification settings - Fork 29
/
codegen.settings.yml
82 lines (82 loc) · 2.45 KB
/
codegen.settings.yml
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
schema:
- '${MC_API_URL}/graphql':
headers:
Cookie: mcAccessToken=${MC_ACCESS_TOKEN}
X-Graphql-Target: settings
documents: 'packages/**/*.settings.graphql'
extensions:
codegen:
generates:
schemas/settings.json:
plugins:
- introspection
'@types-extensions/graphql-settings/index.d.ts':
plugins:
- add:
content: '/* THIS IS A GENERATED FILE */'
- add:
content: '/* eslint-disable import/no-duplicates */'
- typescript-graphql-files-modules
packages/application-shell/src/types/generated/settings.ts:
plugins:
- typescript
- typescript-operations
config:
typesPrefix: T
addUnderscoreToArgsType: true
scalars:
DateTime: string
Json: '{ [key: string]: unknown }'
packages/application-shell-connectors/src/types/generated/settings.ts:
plugins:
- typescript
- typescript-operations
config:
typesPrefix: T
addUnderscoreToArgsType: true
scalars:
DateTime: string
Json: '{ [key: string]: unknown }'
packages/application-components/src/types/generated/settings.ts:
plugins:
- typescript
- typescript-operations
config:
typesPrefix: T
addUnderscoreToArgsType: true
scalars:
DateTime: string
Json: '{ [key: string]: unknown }'
packages/mc-scripts/src/generated/settings.ts:
plugins:
- typescript
- typescript-operations
config:
typesPrefix: T
addUnderscoreToArgsType: true
scalars:
DateTime: string
Json: '{ [key: string]: unknown }'
packages/constants/src/generated/settings.ts:
plugins:
- typescript
- typescript-operations
config:
typesPrefix: T
addUnderscoreToArgsType: true
scalars:
DateTime: string
Json: '{ [key: string]: unknown }'
packages/application-config/src/generated/settings.ts:
plugins:
- typescript
- typescript-operations
config:
typesPrefix: T
addUnderscoreToArgsType: true
scalars:
DateTime: string
Json: '{ [key: string]: unknown }'
hooks:
afterAllFileWrite:
- prettier --write