Commit 275adcfa authored by Alex Beregszaszi's avatar Alex Beregszaszi

jsonio: both libraries and outputSelection is part of settings

parent e1ce4a30
...@@ -8,13 +8,13 @@ module.exports = (sources, opts) => { ...@@ -8,13 +8,13 @@ module.exports = (sources, opts) => {
optimizer: { optimizer: {
enabled: opts.optimize === true, enabled: opts.optimize === true,
runs: 500 runs: 500
} },
}, libraries: opts.libraries,
libraries: opts.libraries, outputSelection: {
outputSelection: { '*': {
'*': { '': [ 'legacyAST' ],
'': [ 'legacyAST' ], '*': [ 'abi', 'metadata', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ]
'*': [ 'abi', 'metadata', 'evm.legacyAssembly', 'evm.bytecode', 'evm.deployedBytecode', 'evm.methodIdentifiers', 'evm.gasEstimates' ] }
} }
} }
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment