13 lines
277 B
TypeScript
13 lines
277 B
TypeScript
import type { CodegenConfig } from "@graphql-codegen/cli";
|
|
|
|
const config: CodegenConfig = {
|
|
schema: "packages/graphql-schema/schema.graphql",
|
|
generates: {
|
|
"apps/web/src/generated/schema-types.ts": {
|
|
plugins: ["typescript"],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|