add new test

This commit is contained in:
Ayush Acharjya
2024-10-26 12:02:07 +01:00
parent 04ddaab282
commit 80c67218fc
3 changed files with 84 additions and 183 deletions

View File

@@ -1,13 +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"]
}
"compilerOptions": {
"target": "ES6",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"outDir": "dist",
"rootDir": "./",
"skipLibCheck": true
},
"include": ["./scripts", "./test", "./typechain-types"],
"files": ["./hardhat.config.ts"]
}