### Description - Currently there is a custom options parsing tool which is ultimately redundant. - Update the options parsing to use the `commander` style conventions. ### Solution - Use `program.opts()` instead. - Have an extended interface for verbose and strict typings - Use this [file](https://github.com/tj/commander.js/blob/HEAD/examples/options-common.js) as a reference
Description
Currently there is a custom options parsing tool which is ultimately redundant.
Update the options parsing to use the
commanderstyle conventions.Solution
Use
program.opts()instead.Have an extended interface for verbose and strict typings
Use this file as a reference