{ "compilerOptions": { "module": "CommonJS", "declaration": true, "removeComments": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "ESNext", "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" ] }