UNPKG

hardhat-typechain

Version:
18 lines (14 loc) 352 B
import { HardhatUserConfig } from "hardhat/types"; import { TypechainConfig } from "./types"; export function getDefaultTypechainConfig( config: HardhatUserConfig ): TypechainConfig { const defaultConfig: TypechainConfig = { outDir: "typechain", target: "ethers-v5", }; return { ...defaultConfig, ...config.typechain, }; }