@defi-wonderland/keep3r-v2
Version:
The Keep3r Network is a decentralized network for projects that need external devops, and for external teams to find keeper jobs
23 lines (22 loc) • 579 B
JSON
{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"@types": ["types/index"],
"@utils": ["test/utils/index"],
"@utils/*": ["test/utils/*"],
"@e2e/*": ["test/e2e/*"],
"@unit/*": ["test/unit/*"],
"@artifacts/*": ["artifacts/*"],
"@solidity/*": ["artifacts/solidity/*"]
}
},
"include": ["./scripts", "./deploy", "./test", "./utils"],
"files": ["./hardhat.config.ts"]
}