tsconfig.json 459 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "es2018",
  4. "module": "commonjs",
  5. "strict": true,
  6. "esModuleInterop": true,
  7. "outDir": "dist",
  8. "typeRoots": [
  9. "./typechain",
  10. "./node_modules/@types"
  11. ],
  12. "types": [
  13. "@nomiclabs/hardhat-ethers",
  14. "@nomiclabs/hardhat-web3",
  15. "@nomiclabs/hardhat-waffle"
  16. ]
  17. },
  18. "include": [
  19. "./scripts",
  20. "./bot",
  21. "./test"
  22. ],
  23. "files": [
  24. "./hardhat.config.ts"
  25. ]
  26. }