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