aboutsummaryrefslogtreecommitdiffstats
path: root/packages/types
diff options
context:
space:
mode:
Diffstat (limited to 'packages/types')
-rw-r--r--packages/types/README.md8
-rw-r--r--packages/types/package.json4
-rw-r--r--packages/types/tsconfig.json2
3 files changed, 7 insertions, 7 deletions
diff --git a/packages/types/README.md b/packages/types/README.md
index 5101ee544..b971eaee7 100644
--- a/packages/types/README.md
+++ b/packages/types/README.md
@@ -10,10 +10,10 @@ yarn add -D @0xproject/types
If your project is in [TypeScript](https://www.typescriptlang.org/), add the following to your `tsconfig.json`:
-```
-"include": [
- "./node_modules/web3-typescript-typings/index.d.ts",
-]
+```json
+"compilerOptions": {
+ "typeRoots": ["node_modules/@0xproject/typescript-typings/types", "node_modules/@types"],
+}
```
## Usage
diff --git a/packages/types/package.json b/packages/types/package.json
index e664b06ae..1142d252a 100644
--- a/packages/types/package.json
+++ b/packages/types/package.json
@@ -28,9 +28,9 @@
"typescript": "2.7.1"
},
"dependencies": {
+ "@0xproject/typescript-typings": "^0.0.1",
"bignumber.js": "~4.1.0",
- "web3": "^0.20.0",
- "web3-typescript-typings": "^0.10.2"
+ "web3": "^0.20.0"
},
"publishConfig": {
"access": "public"
diff --git a/packages/types/tsconfig.json b/packages/types/tsconfig.json
index 3d967d05f..c56d255d5 100644
--- a/packages/types/tsconfig.json
+++ b/packages/types/tsconfig.json
@@ -3,5 +3,5 @@
"compilerOptions": {
"outDir": "lib"
},
- "include": ["./src/**/*", "../../node_modules/web3-typescript-typings/index.d.ts"]
+ "include": ["./src/**/*"]
}