@daml/ledger
Version:
Client side API implementation for a Daml based ledger. This library implements the JSON based API for a Daml ledger documented in https://docs.daml.com/json-api/index.html.
26 lines (25 loc) • 685 B
JSON
{
"compilerOptions": {
"target": "es5",
"lib": [
"es2015"
],
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"outDir": "lib/",
"module": "commonjs",
"esModuleInterop": true,
"declaration": true,
"sourceMap": true,
// @types/node is causing issues with this version of typescript.
"skipLibCheck": true,
// those two options are needed to find @mojotech/json-type-validation validation library
"baseUrl": "./",
"paths": {
"@mojotech/json-type-validation": ["node_modules/@mojotech/json-type-validation"]
},
}
}