Ricardo Arturo Cabral Mejía f3097983a0 fix: type errors
2022-12-21 01:42:43 -05:00

30 lines
686 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es6",
"outDir": "./dist",
"moduleResolution": "Node",
"types": ["node", "mocha", "@cucumber/cucumber"],
"typeRoots": ["./node_modules/@types"],
"incremental": true,
"declarationMap": true,
"inlineSourceMap": true,
"inlineSources": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["ESNext"]
},
"include": [
"src/**/*.ts",
"test/**/*.ts"
],
"exclude": [
"node_modules"
]
}