* refactor: restructure events payload Breaking change: This PR changes the event payload accepted by the event listeners * refactor: fix failing tests and implement feedback * add integration tests * fix timeout --------- Co-authored-by: Adrien de Peretti <adrien.deperetti@gmail.com>
32 lines
739 B
JSON
32 lines
739 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es5", "es6", "es2019"],
|
|
"target": "es2022",
|
|
"outDir": "./dist",
|
|
"esModuleInterop": true,
|
|
"declarationMap": true,
|
|
"declaration": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"noImplicitReturns": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"noImplicitThis": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"downlevelIteration": true // to use ES5 specific tooling
|
|
},
|
|
"include": ["src"],
|
|
"exclude": [
|
|
"./dist/**/*",
|
|
"__tests__",
|
|
"helpers",
|
|
"./**/helpers",
|
|
"./**/__snapshots__",
|
|
"node_modules"
|
|
]
|
|
}
|