Skip to content
This repository was archived by the owner on Jun 17, 2021. It is now read-only.

Commit bd4ce85

Browse files
authored
Merge pull request #260 from ethereumjs/fix/dist
Fix prod tsconfig and include ethjs-util types in dist
2 parents 584cc82 + 173e6bc commit bd4ce85

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/// <reference path="./@types/ethjs-util/index.ts"/>
12
/**
23
* Constants
34
*/

tsconfig.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
{
22
"extends": "@ethereumjs/config-tsc",
3-
"compilerOptions": {
4-
"baseUrl": ".",
5-
"paths": {
6-
"*": ["src/@types/*"]
7-
}
8-
},
93
"include": ["src/**/*.ts", "test/**/*.ts"]
104
}

tsconfig.prod.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"extends": "./tsconfig.json",
33
"compilerOptions": {
44
"outDir": "./dist"
5-
}
5+
},
6+
"include": ["src/**/*.ts"]
67
}

0 commit comments

Comments
 (0)