2022-08-07 01:52:34 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "CommonJS",
|
|
|
|
"declaration": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2023-01-27 02:57:20 -05:00
|
|
|
"target": "ESNext",
|
2022-08-07 01:52:34 +00:00
|
|
|
"outDir": "./dist",
|
|
|
|
"moduleResolution": "Node",
|
2022-10-28 00:44:30 -04:00
|
|
|
"types": ["node", "mocha", "@cucumber/cucumber"],
|
2022-08-07 01:52:34 +00:00
|
|
|
"typeRoots": ["./node_modules/@types"],
|
|
|
|
"incremental": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": ["ESNext"]
|
|
|
|
},
|
2022-08-07 03:21:56 +00:00
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"test/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
2022-08-07 01:52:34 +00:00
|
|
|
}
|