add test cases

This commit is contained in:
Ayush Acharjya
2024-10-25 18:08:28 +01:00
parent 2a04ee34f1
commit 04ddaab282
170 changed files with 63501 additions and 1048 deletions

13
tsconfig.hardhat.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["./scripts", "./test", "./hardhat.config.ts"],
"files": ["./hardhat.config.ts"]
}