Skip to content

Commit 5598f68

Browse files
committed
do not export internal ABIs
1 parent 3c24d69 commit 5598f68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

hardhat.config.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ const config: HardhatUserConfig = {
2727
runOnCompile: true,
2828
clear: true,
2929
flat: true,
30-
// do not export test ABIs, including those generated by hardhat-exposed
31-
except: ['.*Test$', '[$].*'],
30+
// do not export internal or test ABIs, including those generated by hardhat-exposed
31+
except: ['_.*', '.*Test$', '[$].*'],
3232
},
3333

3434
gasReporter: {

0 commit comments

Comments
 (0)