DefinitelyTyped/types/contract-proxy-kit/tsconfig.json
Alan Lu 84e3395375 [contract-proxy-kit] Add definition (#41744)
* Wrote initial declaration

* Wrote tests for types

* Refined CommonConfig declaration

* Ran prettier

* Use ReadonlyArray<Transaction> for execTransactions

* Export type definitions in CPK namespace
2020-01-23 10:33:29 -08:00

24 lines
499 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",
"contract-proxy-kit-tests.ts"
]
}