aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packages/metacoin/package.json6
-rw-r--r--packages/metacoin/tsconfig.json13
2 files changed, 16 insertions, 3 deletions
diff --git a/packages/metacoin/package.json b/packages/metacoin/package.json
index 61ee8280e..6b6ab9c40 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",
- "ethereum-types": "^0.0.1",
+ "@types/mocha": "^5.2.2",
+ "copyfiles": "^2.0.0",
+ "ethereum-types": "^0.0.2",
"ethers": "3.0.22",
"lodash": "^4.17.4",
+ "run-s": "^0.0.0",
"web3-provider-engine": "^14.0.4"
},
"devDependencies": {
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/**/*"]
}