Skip to content

Commit da7183f

Browse files
committed
Move compilerOptions to main tsconfig
1 parent b233ac5 commit da7183f

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

solidity/ecdsa/tsconfig.export.json

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"exclude": ["./test", "./typechain"],
44
"compilerOptions": {
55
"target": "es5",
6-
"esModuleInterop": true,
76
"outDir": "export"
87
}
98
}

solidity/ecdsa/tsconfig.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
22
"files": ["./hardhat.config.ts"],
3-
"include": ["./deploy", "./tasks", "./test", "./typechain"]
3+
"include": ["./deploy", "./tasks", "./test", "./typechain"],
4+
"compilerOptions": {
5+
"esModuleInterop": true
6+
}
47
}

solidity/random-beacon/tsconfig.export.json

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
"exclude": ["./test", "./typechain"],
44
"compilerOptions": {
55
"target": "es5",
6-
"esModuleInterop": true,
76
"outDir": "export"
87
}
98
}

solidity/random-beacon/tsconfig.json

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
{
2+
"files": ["./hardhat.config.ts"],
3+
"include": ["./deploy", "./test", "./typechain"],
24
"compilerOptions": {
3-
"downlevelIteration": true
4-
},
5-
"files": [
6-
"./hardhat.config.ts",
7-
"node_modules/@keep-network/hardhat-local-networks-config/src/type-extensions.d.ts"
8-
],
9-
"include": ["./deploy", "./test", "./typechain"]
5+
"esModuleInterop": true
6+
}
107
}

0 commit comments

Comments
 (0)