We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c34dfb8 commit a5c61f3Copy full SHA for a5c61f3
wagmi.config.ts
@@ -11,7 +11,7 @@ interface JsonFile {
11
12
const ARTIFACTS_DIR = "out";
13
const CONTRACTS_DIR = "contracts";
14
-const CONTRACTS_SUBDIRS = ["adapters", "helpers"];
+const CONTRACTS_SUBDIRS = ["adapters", "helpers", "interfaces"];
15
16
function filterArtifacts(): string[] {
17
const result: string[] = [];
@@ -99,6 +99,11 @@ export default defineConfig({
99
project: ".",
100
artifacts: ARTIFACTS_DIR,
101
include: filterArtifacts(),
102
+ exclude: [
103
+ "**/IZapper.sol/**",
104
+ "**/IERC20ZapperDeposits.sol/**",
105
+ "**/IETHZapperDeposits.sol/**",
106
+ ],
107
forge: {
108
clean: false,
109
build: false,
0 commit comments