Mirror: TypeScript LSP plugin that finds GraphQL documents in your code and provides diagnostics, auto-complete and hover-information.
at main 876 B view raw
1{ 2 "compilerOptions": { 3 "plugins": [ 4 { 5 "name": "@0no-co/graphqlsp", 6 "schema": "./schema.graphql", 7 "templateIsCallExpression": false 8 } 9 ], 10 /* Language and Environment */ 11 "target": "es2016" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */, 12 /* Modules */ 13 "module": "commonjs" /* Specify what module code is generated. */, 14 "esModuleInterop": true /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */, 15 "forceConsistentCasingInFileNames": true /* Ensure that casing is correct in imports. */, 16 /* Type Checking */ 17 "strict": true /* Enable all strict type-checking options. */, 18 "skipLibCheck": true /* Skip type checking all .d.ts files. */ 19 } 20}