summaryrefslogtreecommitdiffstatshomepage
path: root/frontend/codegen.ts
diff options
context:
space:
mode:
authorWolfgang Müller2024-03-05 18:08:09 +0100
committerWolfgang Müller2024-03-05 19:25:59 +0100
commitd1d654ebac2d51e3841675faeb56480e440f622f (patch)
tree56ef123c1a15a10dfd90836e4038e27efde950c6 /frontend/codegen.ts
downloadhircine-d1d654ebac2d51e3841675faeb56480e440f622f.tar.gz
Initial commit0.1.0
Diffstat (limited to 'frontend/codegen.ts')
-rw-r--r--frontend/codegen.ts20
1 files changed, 20 insertions, 0 deletions
diff --git a/frontend/codegen.ts b/frontend/codegen.ts
new file mode 100644
index 0000000..42bc8be
--- /dev/null
+++ b/frontend/codegen.ts
@@ -0,0 +1,20 @@
+import type { CodegenConfig } from '@graphql-codegen/cli';
+
+const config: CodegenConfig = {
+ schema: 'http://[::]:8000/graphql',
+ documents: 'operations.graphql',
+ generates: {
+ './src/gql/graphql.ts': {
+ plugins: ['typescript', 'typescript-operations', 'typed-document-node']
+ }
+ },
+ config: {
+ useTypeImports: true,
+ documentMode: 'documentNode',
+ scalars: {
+ Date: 'string',
+ DateTime: 'string'
+ }
+ }
+};
+export default config;