mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 09:38:26 +00:00
30 lines
792 B
JSON
30 lines
792 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"downlevelIteration": true,
|
|
"allowJs": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@0no-co/graphqlsp",
|
|
"schema": "../../../schema.graphql",
|
|
"disableTypegen": true,
|
|
"templateIsCallExpression": true,
|
|
"template": "graphql"
|
|
}
|
|
]
|
|
},
|
|
"include": ["next-env.d.ts", "modules.d.ts", "src", "pages"],
|
|
"exclude": ["node_modules"]
|
|
}
|