2022-05-18 07:26:57 +00:00
|
|
|
{
|
|
|
|
|
"extends": "../../../tsconfig.json",
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"target": "es2017",
|
|
|
|
|
"lib": ["es2017"],
|
|
|
|
|
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
|
|
|
|
|
"esModuleInterop": true,
|
2023-11-16 12:35:51 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"declaration": true,
|
2024-05-13 14:35:04 +00:00
|
|
|
"declarationMap": true,
|
|
|
|
|
"plugins": [
|
|
|
|
|
{
|
|
|
|
|
"name": "@0no-co/graphqlsp",
|
|
|
|
|
"schema": "../../../schema.graphql",
|
|
|
|
|
"disableTypegen": true,
|
|
|
|
|
"templateIsCallExpression": true,
|
|
|
|
|
"template": "graphql"
|
|
|
|
|
}
|
|
|
|
|
]
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|