diff --git a/libs/hardhat/rollup.config.ts b/libs/hardhat/rollup.config.ts index 81a9ad0..f76168f 100644 --- a/libs/hardhat/rollup.config.ts +++ b/libs/hardhat/rollup.config.ts @@ -7,7 +7,7 @@ const banner = `/** * @module ${pkg.name} * @version ${pkg.version} * @file ${pkg.description} - * @copyright Ethereum Foundation 2022 + * @copyright Ethereum Foundation 2023 * @license ${pkg.license} * @see [Github]{@link ${pkg.homepage}} */` @@ -24,7 +24,7 @@ export default { ], plugins: [ typescript({ - tsconfig: "./build.tsconfig.json" + tsconfig: "./tsconfig.build.json" }), cleanup({ comments: "jsdoc" }) ] diff --git a/libs/hardhat/build.tsconfig.json b/libs/hardhat/tsconfig.build.json similarity index 100% rename from libs/hardhat/build.tsconfig.json rename to libs/hardhat/tsconfig.build.json diff --git a/libs/utils/package.json b/libs/utils/package.json index 7301b06..4b78835 100644 --- a/libs/utils/package.json +++ b/libs/utils/package.json @@ -16,7 +16,7 @@ "README.md" ], "repository": "https://github.com/privacy-scaling-explorations/zk-groups", - "homepage": "https://github.com/privacy-scaling-explorations/zk-groups/tree/main/libs/hardhat", + "homepage": "https://github.com/privacy-scaling-explorations/zk-groups/tree/main/libs/utils", "bugs": { "url": "https://github.com/privacy-scaling-explorations/zk-groups.git/issues" },