forked from DecentralizedClimateFoundation/DCIPs
21 lines
368 B
JSON
21 lines
368 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2018",
|
||
|
"module": "commonjs",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"outDir": "dist",
|
||
|
"resolveJsonModule": true
|
||
|
},
|
||
|
"exclude": [
|
||
|
"contracts"
|
||
|
],
|
||
|
"include": [
|
||
|
"./scripts",
|
||
|
"./test"
|
||
|
],
|
||
|
"files": [
|
||
|
"./hardhat.config.ts"
|
||
|
]
|
||
|
}
|