mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 14:37:17 +00:00
Co-authored-by: Dotan Simha <dotansimha@gmail.com> Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> Co-authored-by: Piotr Monwid-Olechnowicz <hasparus@gmail.com>
30 lines
787 B
JSON
30 lines
787 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext", "webworker"],
|
|
"useDefineForClassFields": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "react-jsx",
|
|
"plugins": [
|
|
{
|
|
"name": "@0no-co/graphqlsp",
|
|
"schema": "../../../schema.graphql",
|
|
"disableTypegen": true,
|
|
"templateIsCallExpression": true,
|
|
"template": "graphql"
|
|
}
|
|
]
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"]
|
|
}
|