@andreas-timm/create-contract-template
Version:
Contract (EVM) development and maintain system template.
21 lines (20 loc) • 583 B
JSON
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"esModuleInterop": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"paths": {
"@core/*": ["./core/*"],
"@test/*": ["./test/*"],
"@artifacts/*": ["./artifacts/*"],
"@shared/*": ["./shared/*"],
"@libs/*": ["./libs/*"]
}
},
"include": ["hardhat.config.ts", "libs/**/*"]
}