mirror of
https://github.com/PaulRBerg/hardhat-template.git
synced 2026-04-20 03:00:26 -04:00
27 lines
554 B
JSON
27 lines
554 B
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["es5", "es6"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"outDir": "dist",
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es5"
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": [
|
|
"@types/**/*",
|
|
"artifacts/**/*",
|
|
"artifacts/**/*.json",
|
|
"scripts/**/*",
|
|
"tasks/**/*",
|
|
"test/**/*",
|
|
"typechain/**/*",
|
|
"buidler.config.ts"
|
|
]
|
|
}
|