···11+---
22+'@0no-co/graphqlsp': minor
33+---
44+55+Change default config to not check for co-located fragments by default
+7-2
packages/graphqlsp/README.md
···43434444### Configuration
45454646+**Required**
4747+4648- `schema` allows you to specify a url, `.json` or `.graphql` file as your schema. If you need to specify headers for your introspection
4749 you can opt into the object notation i.e. `{ "schema": { "url": "x", "headers": { "Authorization": "y" } }}`
4848-- `disableTypegen` disables type-generation in general
5050+5151+**Optional**
5252+5353+- `disableTypegen` disables type-generation in general, this could be needed if offset bugs are introduced
4954- `scalars` allows you to pass an object of scalars that we'll feed into `graphql-code-generator`
5055- `extraTypes` allows you to specify imports or declare types to help with `scalar` definitions
5151-- `shouldCheckForColocatedFragments` when turned on (default), this will scan your imports to find
5656+- `shouldCheckForColocatedFragments` when turned on, this will scan your imports to find
5257 unused fragments and provide a message notifying you about them
53585459## Fragment masking