Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.

document lack of syntax highlighting (#133)

Changed files
+7
packages
graphqlsp
+4
README.md
···
- When you save it will generate `typed-document-nodes` for your documents and cast them to the correct type
- Will warn you when you are importing from a file that is exporting fragments that you're not using
+
> Note that this plugin does not do syntax highlighting, for that you still need something like
+
> [the VSCode/... plugin](https://marketplace.visualstudio.com/items?itemName=GraphQL.vscode-graphql-syntax)
+
## Installation
```sh
···
> If you are using VSCode ensure that your editor is using [the Workspace Version of TypeScript](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-the-workspace-version-of-typescript)
> this can be done by manually selecting it or adding a `.vscode/config.json` with the contents of
+
>
> ```json
> {
> "typescript.tsdk": "node_modules/typescript/lib",
+3
packages/graphqlsp/README.md
···
- When you save it will generate `typed-document-nodes` for your documents and cast them to the correct type
- Will warn you when you are importing from a file that is exporting fragments that you're not using
+
> Note that this plugin does not do syntax highlighting, for that you still need something like
+
> [the VSCode/... plugin](https://marketplace.visualstudio.com/items?itemName=GraphQL.vscode-graphql-syntax)
+
## Installation
```sh