graphql-component
Version:
Build, customize and compose GraphQL schemas in a componentized fashion
23 lines (22 loc) • 485 B
JSON
{
"compilerOptions": {
"experimentalDecorators": true,
"module": "commonjs",
"target": "esnext",
"lib": ["esnext"],
"noImplicitAny": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"inlineSourceMap": true,
"declaration": true,
"esModuleInterop": true,
"types" : ["node", "graphql"],
"outDir": "./dist",
"rootDir": "./src",
},
"exclude": ["node_modules"],
"include": [
"./src"
],
"sourceMap": true
}