22 lines
591 B
TypeScript
22 lines
591 B
TypeScript
import { CodegenConfig } from '@graphql-codegen/cli';
|
|
|
|
const config: CodegenConfig = {
|
|
schema: 'http://localhost:1337/graphql',
|
|
// this assumes that all your source files are in a top-level `src/` directory - you might need to adjust this to your file structure
|
|
documents: ['src/**/*.{ts,tsx}'],
|
|
generates: {
|
|
'./src/__generated__/': {
|
|
preset: 'client',
|
|
plugins: [
|
|
"typescript",
|
|
"typescript-operations"
|
|
],
|
|
presetConfig: {
|
|
gqlTagName: 'gql',
|
|
}
|
|
}
|
|
},
|
|
ignoreNoDocuments: true,
|
|
};
|
|
|
|
export default config; |