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.ts" 8 } 9 ], 10 "jsx": "react-jsx", 11 /* Language and Environment */ 12 "target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, 13 /* Modules */ 14 "module": "commonjs" /* Specify what module code is generated. */, 15 "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, 16 "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, 17 /* Type Checking */ 18 "strict": true /* Enable all strict type-checking options. */, 19 "skipLibCheck": true /* Skip type checking all .d.ts files. */ 20 } 21}