From feafd5702747eaff76675f57a5886d4ba3f8d3d1 Mon Sep 17 00:00:00 2001 From: "F. Eugene Aumson" Date: Tue, 19 Jun 2018 19:50:09 -0400 Subject: make metacoin tsconfig independent --- packages/metacoin/tsconfig.json | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/packages/metacoin/tsconfig.json b/packages/metacoin/tsconfig.json index 8b4cd47a2..bc3bd1e94 100644 --- a/packages/metacoin/tsconfig.json +++ b/packages/metacoin/tsconfig.json @@ -1,7 +1,16 @@ { - "extends": "../../tsconfig", "compilerOptions": { - "outDir": "lib" + "outDir": "lib", + "lib": ["es2017"], + "skipLibCheck": true, + "typeRoots": [ + "comment: for building within 0x-monorepo:", + "../../node_modules/@0xproject/typescript-typings/types", + "../../node_modules/@types", + "comment: for building in an isolated environment:", + "node_modules/@0xproject/typescript-typings/types", + "node_modules/@types" + ] }, "include": ["src/**/*", "test/**/*"] } -- cgit v1.2.3 From 457f951aaf589670b3edd11be7849ac17ef7e6f4 Mon Sep 17 00:00:00 2001 From: "F. Eugene Aumson" Date: Tue, 19 Jun 2018 19:50:32 -0400 Subject: add missing metacoin dependencies --- packages/metacoin/package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/metacoin/package.json b/packages/metacoin/package.json index 6db14334e..1a7b75f73 100644 --- a/packages/metacoin/package.json +++ b/packages/metacoin/package.json @@ -36,11 +36,15 @@ "@0xproject/subproviders": "^0.10.4", "@0xproject/tslint-config": "^0.4.20", "@0xproject/types": "^0.8.1", + "@0xproject/typescript-typings": "^0.4.1", "@0xproject/utils": "^0.7.1", "@0xproject/web3-wrapper": "^0.7.1", + "@types/mocha": "^5.2.2", + "copyfiles": "^2.0.0", "ethereum-types": "^0.0.1", "ethers": "3.0.22", "lodash": "^4.17.4", + "run-s": "^0.0.0", "web3-provider-engine": "^14.0.4" }, "devDependencies": { -- cgit v1.2.3 From 663f9657ea208060abd23485a1b607fbc3cde67e Mon Sep 17 00:00:00 2001 From: "F. Eugene Aumson" Date: Tue, 19 Jun 2018 19:54:35 -0400 Subject: ethereum-types now only has v0.0.2, no 0.0.1 --- packages/metacoin/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/metacoin/package.json b/packages/metacoin/package.json index 1a7b75f73..6156571a4 100644 --- a/packages/metacoin/package.json +++ b/packages/metacoin/package.json @@ -41,7 +41,7 @@ "@0xproject/web3-wrapper": "^0.7.1", "@types/mocha": "^5.2.2", "copyfiles": "^2.0.0", - "ethereum-types": "^0.0.1", + "ethereum-types": "^0.0.2", "ethers": "3.0.22", "lodash": "^4.17.4", "run-s": "^0.0.0", -- cgit v1.2.3