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