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 "tadaOutputLocation": "./introspection.d.ts" 8 } 9 ], 10 "target": "es2016", 11 "esModuleInterop": true, 12 "moduleResolution": "node", 13 "forceConsistentCasingInFileNames": true, 14 "strict": true, 15 "skipLibCheck": true 16 }, 17 "exclude": ["node_modules", "fixtures"] 18}