laconicd/tests/integration_tests/contracts/hardhat.config.ts

23 lines
391 B
TypeScript
Raw Normal View History

2022-10-10 10:38:33 +00:00
import { HardhatUserConfig } from "hardhat/config";
import "hardhat-typechain";
const config: HardhatUserConfig = {
solidity: {
compilers: [
{
version: "0.8.10",
settings: {
optimizer: {
enabled: true
}
}
},
],
},
typechain: {
outDir: "typechain",
target: "ethers-v5",
},
};
export default config;