diff options
author | Leonid <logvinov.leon@gmail.com> | 2018-01-11 02:35:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-11 02:35:37 +0800 |
commit | de943c5f305402bc64a6b3273c59669faa62a60d (patch) | |
tree | 936eae17521984e5ccc28057973461e707322326 /packages/subproviders/tsconfig.json | |
parent | e6a783aff803c276392efec93571d24fc96feb6e (diff) | |
parent | e34b0af25133629ad4c177c4d7d5050bd6ac19b8 (diff) | |
download | dexon-sol-tools-de943c5f305402bc64a6b3273c59669faa62a60d.tar dexon-sol-tools-de943c5f305402bc64a6b3273c59669faa62a60d.tar.gz dexon-sol-tools-de943c5f305402bc64a6b3273c59669faa62a60d.tar.bz2 dexon-sol-tools-de943c5f305402bc64a6b3273c59669faa62a60d.tar.lz dexon-sol-tools-de943c5f305402bc64a6b3273c59669faa62a60d.tar.xz dexon-sol-tools-de943c5f305402bc64a6b3273c59669faa62a60d.tar.zst dexon-sol-tools-de943c5f305402bc64a6b3273c59669faa62a60d.zip |
Merge pull request #307 from 0xProject/feature/web3-type-roots
Base tsconfig.json
Diffstat (limited to 'packages/subproviders/tsconfig.json')
-rw-r--r-- | packages/subproviders/tsconfig.json | 13 |
1 files changed, 3 insertions, 10 deletions
diff --git a/packages/subproviders/tsconfig.json b/packages/subproviders/tsconfig.json index 63fb7d7d1..9a65a0a97 100644 --- a/packages/subproviders/tsconfig.json +++ b/packages/subproviders/tsconfig.json @@ -1,20 +1,13 @@ { + "extends": "../../tsconfig", "compilerOptions": { - "module": "commonjs", - "target": "es5", - "lib": ["es2015", "dom"], - "outDir": "lib", - "sourceMap": true, - "declaration": true, - "noImplicitAny": true, - "experimentalDecorators": true, - "strictNullChecks": true + "outDir": "lib" }, "include": [ "./src/**/*", "./test/**/*", - "../../node_modules/web3-typescript-typings/index.d.ts", "../../node_modules/chai-typescript-typings/index.d.ts", + "../../node_modules/web3-typescript-typings/index.d.ts", "../../node_modules/types-bn/index.d.ts", "../../node_modules/types-ethereumjs-util/index.d.ts", "../../node_modules/chai-as-promised-typescript-typings/index.d.ts" |