infrastructure-upgrade/lib/v3-periphery/tsconfig.json

15 lines
375 B
JSON
Raw Normal View History

2023-04-08 21:46:18 +03:00
{
"compilerOptions": {
"target": "es2018",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"outDir": "dist",
"typeRoots": ["./typechain", "./node_modules/@types"],
"types": ["@nomiclabs/hardhat-ethers", "@nomiclabs/hardhat-waffle"]
},
"include": ["./test"],
"files": ["./hardhat.config.ts"]
}