mirror of
https://github.com/graphql-hive/console
synced 2026-04-21 22:47:17 +00:00
27 lines
580 B
JSON
27 lines
580 B
JSON
{
|
|
"extends": "../../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"target": "es2017",
|
|
"lib": ["es2017"],
|
|
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@0no-co/graphqlsp",
|
|
"schema": "../../../schema.graphql",
|
|
"disableTypegen": true,
|
|
"templateIsCallExpression": true,
|
|
"template": "graphql"
|
|
}
|
|
]
|
|
},
|
|
"include": ["src"]
|
|
}
|