fabric-samples/asset-transfer-basic/application-typescript-hsm/tsconfig.json
Dave Kelsey 42c7d4a142
New HSM Typescript Sample (#458)
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>
2021-07-06 13:39:42 +01:00

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"
]
}