File size: 420 Bytes
5285b72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import type { CodegenConfig } from "@graphql-codegen/cli"

const config: CodegenConfig = {
  overwrite: true,
  schema: "schema/graphql_*.graphql",
  documents: "frontend/**/*.{ts,tsx}",
  ignoreNoDocuments: true,
  generates: {
    "frontend/generated/": {
      preset: "client",
      plugins: [],
      config: {
        enumsAsTypes: true,
        strictScalars: true,
      },
    },
  },
}

export default config