console/packages/libraries/cli/tsconfig.json

28 lines
580 B
JSON
Raw Normal View History

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,
"allowSyntheticDefaultImports": true,
"declaration": true,
"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"]
}