chore: missing converts

This commit is contained in:
Fabio Berger
2018-10-18 14:08:26 +01:00
parent 0affc7682f
commit 058c887353
3 changed files with 6 additions and 6 deletions

View File

@@ -1,10 +1,10 @@
// tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name // tslint:disable:no-consecutive-blank-lines ordered-imports align trailing-comma whitespace class-name
// tslint:disable:no-unused-variable // tslint:disable:no-unused-variable
// tslint:disable:no-unbound-method // tslint:disable:no-unbound-method
import { BaseContract } from '@0xproject/base-contract'; import { BaseContract } from '@0x/base-contract';
import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types'; import { BlockParam, BlockParamLiteral, CallData, ContractAbi, ContractArtifact, DecodedLogArgs, MethodAbi, Provider, TxData, TxDataPayable } from 'ethereum-types';
import { BigNumber, classUtils, logUtils } from '@0xproject/utils'; import { BigNumber, classUtils, logUtils } from '@0x/utils';
import { Web3Wrapper } from '@0xproject/web3-wrapper'; import { Web3Wrapper } from '@0x/web3-wrapper';
import * as ethers from 'ethers'; import * as ethers from 'ethers';
import * as _ from 'lodash'; import * as _ from 'lodash';
// tslint:enable:no-unused-variable // tslint:enable:no-unused-variable

View File

@@ -5,10 +5,10 @@
"rootDir": ".", "rootDir": ".",
"typeRoots": [ "typeRoots": [
"comment: for building within 0x-monorepo:", "comment: for building within 0x-monorepo:",
"../../node_modules/@0xproject/typescript-typings/types", "../../node_modules/@0x/typescript-typings/types",
"../../node_modules/@types", "../../node_modules/@types",
"comment: for building in an isolated environment:", "comment: for building in an isolated environment:",
"node_modules/@0xproject/typescript-typings/types", "node_modules/@0x/typescript-typings/types",
"node_modules/@types" "node_modules/@types"
] ]
}, },

View File

@@ -11,7 +11,7 @@
"resolveJsonModule": true, "resolveJsonModule": true,
"pretty": true, "pretty": true,
"skipLibCheck": true, "skipLibCheck": true,
"typeRoots": ["node_modules/@0xproject/typescript-typings/types", "node_modules/@types"], "typeRoots": ["node_modules/@0x/typescript-typings/types", "node_modules/@types"],
"strict": true "strict": true
} }
} }