.gitignore 275 B

123456789101112131415161718192021222324
  1. # folders
  2. .coverage_artifacts/
  3. .coverage_cache/
  4. .coverage_contracts/
  5. .yarn/*
  6. !.yarn/releases
  7. !.yarn/plugins
  8. artifacts/
  9. build/
  10. cache/
  11. coverage/
  12. dist/
  13. lib/
  14. node_modules/
  15. typechain/
  16. # files
  17. *.env
  18. *.log
  19. *.tsbuildinfo
  20. coverage.json
  21. npm-debug.log*
  22. yarn-debug.log*
  23. yarn-error.log*