We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46fa12a commit 65cf927Copy full SHA for 65cf927
v-next/core/src/types/config.ts
@@ -52,4 +52,12 @@ export interface HardhatUserConfig {}
52
* The resolved Hardhat configuration.
53
*/
54
// eslint-disable-next-line @typescript-eslint/no-empty-interface -- Used through module aumentation
55
-export interface HardhatConfig {}
+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