mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
This commit implements the TypeScript version of the asset-transfer-ledger-queries Chaincode. Resolves #1232 Signed-off-by: Satoshi Ito <satoshi.ito.tf@hitachi.com>
17 lines
498 B
JSON
17 lines
498 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "@tsconfig/node18/tsconfig.json",
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "dist",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"include": ["src/"]
|
|
}
|