Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
1{ 2 "compilerOptions": { 3 "plugins": [ 4 { 5 "name": "@0no-co/graphqlsp", 6 "schema": "./schema.graphql", 7 "disableTypegen": true, 8 "trackFieldUsage": true, 9 "shouldCheckForColocatedFragments": false 10 } 11 ], 12 "target": "es2016", 13 "jsx": "react-jsx", 14 "esModuleInterop": true, 15 "moduleResolution": "node", 16 "forceConsistentCasingInFileNames": true, 17 "strict": true, 18 "skipLibCheck": true 19 }, 20 "exclude": ["node_modules", "fixtures"] 21}