command-parser/babel.config.cjs
Navy.gif c669d60428
All checks were successful
continuous-integration/drone/push Build is passing
default help option to commands and subcommands
bugfix for boolean type parse
2023-05-05 17:32:29 +03:00

12 lines
204 B
JavaScript

module.exports = {
presets: [
[
'@babel/preset-env',
{
targets: {
node: 'current'
}
}
]
]
};