hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
20 lines • 583 B
JavaScript
import { globalFlag } from "../../core/config.js";
import "./type-extensions.js";
const hardhatPlugin = {
id: "builtin:coverage",
tasks: [],
globalOptions: [
globalFlag({
name: "coverage",
description: "Enables code coverage",
}),
],
hookHandlers: {
clean: () => import("./hook-handlers/clean.js"),
hre: () => import("./hook-handlers/hre.js"),
solidity: () => import("./hook-handlers/solidity.js"),
},
npmPackage: "hardhat",
};
export default hardhatPlugin;
//# sourceMappingURL=index.js.map