mirror of
https://github.com/hyperledger/fabric-samples.git
synced 2026-06-17 15:35:09 +00:00
Add a new sample in typescript to show how to use an HSM within a client node application Signed-off-by: D <d_kelsey@uk.ibm.com> Co-authored-by: D <d_kelsey@uk.ibm.com>
18 lines
363 B
JSON
18 lines
363 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"target": "es2017",
|
|
"moduleResolution": "node",
|
|
"module": "commonjs",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"strict": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"exclude": [
|
|
"./src/**/*.spec.ts"
|
|
]
|
|
}
|