Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 65cf927

Browse files
committedJul 23, 2024
Add cache and artifacts paths to HardhatConfig
1 parent 46fa12a commit 65cf927

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed
 

‎v-next/core/src/types/config.ts

+9-1
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,12 @@ export interface HardhatUserConfig {}
5252
* The resolved Hardhat configuration.
5353
*/
5454
// eslint-disable-next-line @typescript-eslint/no-empty-interface -- Used through module aumentation
55-
export interface HardhatConfig {}
55+
export interface HardhatConfig {
56+
paths: ProjectPathsConfig;
57+
}
58+
59+
export interface ProjectPathsConfig {
60+
root: string;
61+
cache: string;
62+
artifacts: string;
63+
}

0 commit comments

Comments
 (0)
Please sign in to comment.