Use TS_NODE_TRANSPILE_ONLY override (#70)

Co-authored-by: Victorien Gauch <85494462+VGau@users.noreply.github.com>
This commit is contained in:
The Dark Jester
2024-09-20 05:42:03 -07:00
committed by GitHub
parent f1744c2f46
commit 827188b64c
2 changed files with 2 additions and 1 deletions

View File

@@ -3,6 +3,7 @@
compile:
pnpm run build
force-compile: export TS_NODE_TRANSPILE_ONLY := 1
force-compile:
npx hardhat compile --force

View File

@@ -5,7 +5,7 @@
"pnpm": ">=9"
},
"scripts": {
"build": "npx hardhat compile",
"build": "TS_NODE_TRANSPILE_ONLY=1 npx hardhat compile",
"test": "npm run autoupdate && npx hardhat test",
"test:reportgas": "REPORT_GAS=true npx hardhat test",
"coverage": "npm run autoupdate && npx hardhat coverage --solcoverjs ./.solcover.js",