foundry.toml 273 B

12345678910111213
  1. [profile.default]
  2. solc_version = '0.8.4'
  3. optimizer = true
  4. optimizer_runs = 10000
  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. libs = [
  10. 'lib',
  11. 'node_modules',
  12. ]