Files
supabase/apps/studio/scripts/codegen.ts
Charis d122f289df feat(api gateway logs): add error code explanation (#36315)
Add the ability to look up error code explanation in API Gateway logs.
Also a bunch of GraphQL-related utilities and generated types for
calling the Content API.
2025-06-24 13:18:12 -04:00

18 lines
341 B
TypeScript

import type { CodegenConfig } from '@graphql-codegen/cli'
const config: CodegenConfig = {
schema: 'scripts/schema.graphql',
documents: ['data/**/*.ts'],
ignoreNoDocuments: true,
generates: {
'data/graphql/': {
preset: 'client',
config: {
documentMode: 'string',
},
},
},
}
export default config