We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93b58ac commit bc6e119Copy full SHA for bc6e119
hardhat.config.ts
@@ -154,8 +154,9 @@ const config: HardhatUserConfig = {
154
},
155
abiExporter: {
156
path: './build/abis',
157
- clear: false,
+ clear: true,
158
flat: true,
159
+ runOnCompile: true,
160
161
tenderly: {
162
project: 'graph-network',
scripts/prepublish
@@ -16,7 +16,7 @@ cp -R build/types/ dist/types/_src
16
### Build Typechain bindings
17
18
# Build and create TS declarations
19
-tsc -d ${TYPECHAIN_DIR}/_src/*.ts --outdir ${TYPECHAIN_DIR}
+tsc -d ${TYPECHAIN_DIR}/_src/*.ts --outdir ${TYPECHAIN_DIR} --esModuleInterop
20
# Copy back sources
21
cp ${TYPECHAIN_DIR}/_src/*.ts ${TYPECHAIN_DIR}
22
# Delete temporary src dir
0 commit comments