DefinitelyTyped/types/sawtooth-sdk/tsconfig.json
Patrick Erichsen 41a7d74472
Add sawtooth-sdk (#43272)
Signed-off-by: Patrick-Erichsen <Patrick.Erichsen@target.com>
2020-03-31 11:31:01 -07:00

28 lines
582 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"test/signing-tests.ts",
"test/processor-tests.ts"
],
"exclude": [
"protobuf/index.d.ts"
]
}