From 37d14bf674728be239a15bbef19b8d4e3ab55be2 Mon Sep 17 00:00:00 2001 From: Tom French Date: Mon, 21 Nov 2022 15:38:37 +0000 Subject: [PATCH] fix: include lookup table in build output --- pkg/deployments/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/deployments/tsconfig.json b/pkg/deployments/tsconfig.json index eb77aed915..bd9bd069f8 100644 --- a/pkg/deployments/tsconfig.json +++ b/pkg/deployments/tsconfig.json @@ -6,7 +6,7 @@ "outDir": "dist", "resolveJsonModule": true }, - "include": ["index.ts", "src", "tasks/**/abi/*.json", "tasks/**/bytecode/*.json", "tasks/**/output/*.json"], + "include": ["index.ts", "src", "addresses/**/*.json", "tasks/**/abi/*.json", "tasks/**/bytecode/*.json", "tasks/**/output/*.json"], "exclude": ["tasks/**/test", "tasks/**/output/test.json"], "files": ["./hardhat.config.ts"] }