Эх сурвалжийг харах

fix: remove coverage and coverageJson from user config

Tom French 4 жил өмнө
parent
commit
10baee5dc3

+ 0 - 2
hardhat.config.ts

@@ -64,8 +64,6 @@ const config: HardhatUserConfig = {
   paths: {
     artifacts: "./artifacts",
     cache: "./cache",
-    coverage: "./coverage",
-    coverageJson: "./coverage.json",
     sources: "./contracts",
     tests: "./test",
   },

+ 0 - 7
types/augmentations.d.ts

@@ -1,13 +1,6 @@
 import { Accounts, Signers } from "./";
 import { Greeter } from "../typechain/Greeter";
 
-declare module "hardhat/types" {
-  interface ProjectPathsUserConfig {
-    coverage: string;
-    coverageJson: string;
-  }
-}
-
 declare module "mocha" {
   export interface Context {
     accounts: Accounts;