generator-nest-js-boilerplate
Version:
This generator will help you to build your own Nest.js Mongodb API using TypeScript 4
24 lines (22 loc) • 505 B
JavaScript
/**
* Exports object that contains names of options as a key and their configuration objects as a value
*
* @example
* module.exports = {
* optionName: {
* desc: 'Description for the option',
* alias: 'Short name for the option',
* type: Boolean || String || Number,
* defaults: 'Default value',
* hide: false
* }
* };
*/
module.exports = {
'skip-install': {
desc: 'Do not install dependencies',
type: Boolean,
defaults: false,
hide: false,
},
};