mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Updated application flow Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Add grpc dependency in package.json Signed-off-by: sapthasurendran <saptha.surendran@ibm.com> Update CI pipelines to run new app Updated application description in package.json Fixed chaincode name Code Refactor Signed-off-by: sapthasurendran <saptha.surendran@ibm.com>
18 lines
392 B
JSON
18 lines
392 B
JSON
{
|
|
"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"
|
|
]
|
|
}
|