24 lines
600 B
TOML
24 lines
600 B
TOML
[default]
|
|
solc_version = "0.8.4"
|
|
optimizer = true
|
|
optimizer_runs = 200
|
|
src="contracts"
|
|
# We put the tests into the forge-test directory (instead of test) so that
|
|
# truffle doesn't try to build them
|
|
test="forge-test"
|
|
|
|
out = 'out'
|
|
libs = [
|
|
'lib',
|
|
'node_modules',
|
|
]
|
|
remappings = [
|
|
'@openzeppelin/=node_modules/@openzeppelin/',
|
|
'@solidity-parser/=node_modules/@solidity-parser/',
|
|
'ds-test/=lib/forge-std/lib/ds-test/src/',
|
|
'forge-std/=lib/forge-std/src/',
|
|
'truffle/=node_modules/truffle/',
|
|
]
|
|
|
|
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
|