mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-18 07:55:10 +00:00
* Gateway Migration for events application Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> * Documentation Error Fix Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> * Updated ci pipelines to include the app Readme update Wait for events to complete Refactor code for events replay Signed-off-by: sapthasurendran <saptha.surendran@ibm.com>
18 lines
392 B
JSON
Executable file
18 lines
392 B
JSON
Executable file
{
|
|
"extends":"@tsconfig/node14/tsconfig.json",
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"outDir": "dist",
|
|
"moduleResolution": "node",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.spec.ts"
|
|
]
|
|
}
|