mirror of
https://github.com/getwax/bls-wallet.git
synced 2026-04-23 03:00:37 -04:00
* Add workflow for spinning up env & running tests * Rename provider tests directory * Remove periods from error messages * Move chai spies to hardhat config * Print agg error logs to artifact * Use fresh state between tests * Fix nonce too low error
13 lines
302 B
JSON
13 lines
302 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2018",
|
|
"module": "commonjs",
|
|
"strict": false, //true,
|
|
"esModuleInterop": true,
|
|
"outDir": "dist",
|
|
"declaration": true
|
|
},
|
|
"include": ["./scripts", "./test", "./typechain-types", "./test-integration"],
|
|
"files": ["./hardhat.config.ts"]
|
|
}
|