| 1234567891011121314151617181920212223242526 |
- {
- "compilerOptions": {
- "target": "es2018",
- "module": "commonjs",
- "strict": true,
- "esModuleInterop": true,
- "outDir": "dist",
- "typeRoots": [
- "./typechain",
- "./node_modules/@types"
- ],
- "types": [
- "@nomiclabs/hardhat-ethers",
- "@nomiclabs/hardhat-web3",
- "@nomiclabs/hardhat-waffle"
- ]
- },
- "include": [
- "./scripts",
- "./bot",
- "./test"
- ],
- "files": [
- "./hardhat.config.ts"
- ]
- }
|