console/packages/libraries/cli/tsconfig.json
2024-05-13 14:35:04 +00:00

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"]
}