Files
lodestar/tsconfig.json
Nazar Hussain c4ba9ff9cd Add eth_getCode support to prover (#5364)
* Add eth_getCode support for the prover

* Move some functions to a utility file

* Add more unit tests

* Add unit test for getCode

* Cleanup fixture files

* Update the tsconfig
2023-04-19 09:23:27 -04:00

13 lines
332 B
JSON

{
"extends": "./tsconfig.build.json",
"compilerOptions": {
"emitDeclarationOnly": false,
"incremental": false,
// Required to run benchmark command from root directory
"typeRoots": ["node_modules/@types", "./types"],
"noEmit": true,
// To be used in the test fixtures
"resolveJsonModule": true
}
}