mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Signed-off-by: Rijul Aggarwal <rijul.aggarwal@ibm.com> Co-authored-by: Rijul Aggarwal <rijul.aggarwal@ibm.com>
19 lines
418 B
JSON
19 lines
418 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"outDir": "dist",
|
|
"target": "es2017",
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.spec.ts"
|
|
]
|
|
}
|