aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/graphql-codegen.ts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/graphql-codegen.ts')
-rw-r--r--frontend/graphql-codegen.ts23
1 files changed, 0 insertions, 23 deletions
diff --git a/frontend/graphql-codegen.ts b/frontend/graphql-codegen.ts
deleted file mode 100644
index d5339a4..0000000
--- a/frontend/graphql-codegen.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-import type { CodegenConfig } from "@graphql-codegen/cli";
-
-const config: CodegenConfig = {
- overwrite: true,
- schema: "src/graphql/schema.graphql",
- documents: ["src/graphql/*.graphql"],
- generates: {
- "src/graphql/generated/": {
- preset: "client",
- plugins: [],
- config: {
- enumsAsTypes: true,
- skipTypename: true,
- useTypeImports: true,
- scalars: {
- DateTime: "string",
- },
- },
- },
- },
-};
-
-export default config;