Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Fix typeRoots for tsconfig.json #5956

Merged
merged 1 commit into from
Mar 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions packages/blockchain-utils/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@
"types": ["node", "mocha"],
"typeRoots": [
"./typings",
"../../node_modules/@types/node",
"../../node_modules/@types/mocha",
"../../node_modules/@types/assert"
"../../node_modules/@types"
]
},
"include": [
Expand Down
5 changes: 2 additions & 3 deletions packages/config/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,8 @@
"types": ["node", "mocha"],
"typeRoots": [
"./typings",
"node_modules/@types/node",
"../../node_modules/@types/mocha",
"../../node_modules/@types/node"
"node_modules/@types",
"../../node_modules/@types"
]
},
"include": [
Expand Down
2 changes: 1 addition & 1 deletion packages/from-hardhat/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"rootDir": ".",
"baseUrl": ".",
"typeRoots": ["../../node_modules/@types/node"],
"typeRoots": ["../../node_modules/@types"],
"types": [
"mocha"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/hdwallet/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
"rootDir": ".",
"baseUrl": ".",
"typeRoots": ["../../node_modules/@types/node"],
"typeRoots": ["../../node_modules/@types"],
"types": ["mocha"]
},
"include": ["src/**/*"],
Expand Down