import type { Option as ForgeProjectOption } from '../../types'; export const forgeProjectOptions: ForgeProjectOption[] = [ { flags: '--forge.out ', description: 'The path to the contract artifacts folder.', }, { flags: '--forge.revert-strings ', description: 'Revert string configuration. [default, strip, debug, verboseDebug]', }, { flags: '--forge.build-info', description: 'Generate build info files.', }, { flags: '--forge.build-info-path ', description: 'Output path to directory where build info files will be written.', }, { flags: '--forge.root ', description: "The project's root path.", }, { flags: '--forge.contracts ', description: 'The contracts source directory.', }, { flags: '--forge.remappings ', description: "The project's remappings, in the format =.", }, { flags: '--forge.remappings-env ', description: "The project's remappings from the environment.", }, { flags: '--forge.cache-path ', description: 'The path to the compiler cache.', }, { flags: '--forge.lib-paths ', description: 'The path to the library folder.', }, { flags: '--forge.hardhat', description: 'Use the Hardhat-style project layout.', }, { flags: '--forge.config-path ', description: 'Path to the config file.', }, ];