foundry.toml 600 B

1234567891011121314151617181920212223
  1. [default]
  2. solc_version = "0.8.4"
  3. optimizer = true
  4. optimizer_runs = 200
  5. src="contracts"
  6. # We put the tests into the forge-test directory (instead of test) so that
  7. # truffle doesn't try to build them
  8. test="forge-test"
  9. out = 'out'
  10. libs = [
  11. 'lib',
  12. 'node_modules',
  13. ]
  14. remappings = [
  15. '@openzeppelin/=node_modules/@openzeppelin/',
  16. '@solidity-parser/=node_modules/@solidity-parser/',
  17. 'ds-test/=lib/forge-std/lib/ds-test/src/',
  18. 'forge-std/=lib/forge-std/src/',
  19. 'truffle/=node_modules/truffle/',
  20. ]
  21. # See more config options https://github.com/foundry-rs/foundry/tree/master/config