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