UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

61 lines (60 loc) 1.49 kB
{ "$schema": "http://json-schema.org/schema", "id": "SchematicsNgOhayoModule", "title": "Ng Ohayo Module Options Schema", "type": "object", "properties": { "name": { "type": "string", "description": "The name of the module.", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "What name would you like to use for the module?" }, "path": { "type": "string", "format": "path", "description": "The path to create the module.", "visible": false }, "project": { "type": "string", "description": "The name of the project.", "$default": { "$source": "projectName" } }, "routing": { "type": "boolean", "description": "Generates a routing module.", "default": false }, "routingScope": { "enum": ["Child", "Root"], "type": "string", "description": "The scope for the generated routing.", "default": "Child" }, "flat": { "type": "boolean", "description": "Flag to indicate if a directory is created.", "default": false }, "commonModule": { "type": "boolean", "description": "Flag to control whether the CommonModule is imported.", "default": true, "visible": false }, "module": { "type": "string", "description": "Allows specification of the declaring module.", "alias": "m" } }, "required": [ "name" ] }