14 lines
344 B
JSON
14 lines
344 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "es2018",
|
||
|
"module": "commonjs",
|
||
|
"strict": true,
|
||
|
"esModuleInterop": true,
|
||
|
"outDir": "dist",
|
||
|
"typeRoots": ["./typechain", "./node_modules/@types"],
|
||
|
"types": ["@nomiclabs/hardhat-ethers", "@nomiclabs/hardhat-waffle"]
|
||
|
},
|
||
|
"include": ["./test"],
|
||
|
"files": ["./hardhat.config.ts"]
|
||
|
}
|