Skip to content

Commit 65cf927

Browse files
committed
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

Lines changed: 9 additions & 1 deletion
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)