mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 23:45:10 +00:00
The latest version (2.1.2) of sort-keys-recursive adds TypeScript typing, which includes export default function. This change has caused the TS2349 type error. This patch modifies the import form in assetTransfer.ts to fix the error. Signed-off-by: Tatsuya Sato <tatsuya.sato.so@hitachi.com>
19 lines
420 B
JSON
19 lines
420 B
JSON
{
|
|
"compilerOptions": {
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"outDir": "dist",
|
|
"target": "es2017",
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"declaration": true,
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.spec.ts"
|
|
]
|
|
}
|