From ef2b57d1afa7dccb6ab36490c3ad72b8fa326b39 Mon Sep 17 00:00:00 2001 From: Jovi De Croock Date: Fri, 22 Dec 2023 18:57:38 +0100 Subject: [PATCH] fix(docs): remove svelte section from ts integrations (#3471) --- docs/basics/typescript-integration.md | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/docs/basics/typescript-integration.md b/docs/basics/typescript-integration.md index e821d89d60..86634a5f13 100644 --- a/docs/basics/typescript-integration.md +++ b/docs/basics/typescript-integration.md @@ -80,26 +80,6 @@ const config: CodegenConfig = { export default config; ``` -#### Svelte project configuration - -Create the following `codegen.ts` configuration file: - -```ts -const config: CodegenConfig = { - schema: '', - documents: ['src/**/*.svelte'], - ignoreNoDocuments: true, // for better experience with the watcher - generates: { - './src/gql/': { - preset: 'client', - plugins: [], - }, - }, -}; - -export default config; -``` - ## Typing queries, mutations and subscriptions Now that your project is properly configured, let's start codegen in watch mode: