Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.

fix(docs): remove svelte section from ts integrations (#3471)

Changed files
-20
docs
-20
docs/basics/typescript-integration.md
···
export default config;
```
-
#### Svelte project configuration
-
-
Create the following `codegen.ts` configuration file:
-
-
```ts
-
const config: CodegenConfig = {
-
schema: '<YOUR_GRAPHQL_API_URL>',
-
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:
···
export default config;
```
## Typing queries, mutations and subscriptions
Now that your project is properly configured, let's start codegen in watch mode: