Skip to content

Commit

Permalink
Fix edr_napi tsconfig.json
Browse files Browse the repository at this point in the history
In the Hardhat repo, this was extending the base tsconfig, but we
don't have it anymore here. We could use Hardhat as a submodule or
something, but in this case I think it's better to just duplicate it.
  • Loading branch information
fvictorio committed Apr 22, 2024
1 parent baa6913 commit 4cb10f9
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion crates/edr_napi/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
{
"extends": "../../config/typescript/tsconfig.json",
"compilerOptions": {
"target": "ES2021",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"esModuleInterop": true,
"noEmitOnError": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"outDir": "./build-test",
"rootDirs": [
"./test"
Expand Down

0 comments on commit 4cb10f9

Please sign in to comment.