UNPKG

@ng-doc/builder

Version:

<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>

47 lines (46 loc) 1.24 kB
{ "$schema": "http://json-schema.org/schema", "$id": "NgDocPage", "title": "NgDocPage schematic", "type": "object", "properties": { "path": { "type": "string", "format": "path", "$default": { "$source": "workingDirectory" }, "description": "The path at which to create the entity file, relative to the current workspace. Default is a folder with the same name as the component in the project root.", "visible": false }, "title": { "type": "string", "description": "The title of the page.", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "The title of your page (e.g. \"Getting Started\")?" }, "name": { "type": "string", "description": "Name of the category variable (alias is `-n`, title in PascalCase by default)", "alias": "n" }, "route": { "type": "string", "description": "The route of the page", "alias": "r" }, "category": { "type": "boolean", "description": "Automatically import the category.", "alias": "c" }, "order": { "type": "number", "description": "Order page in sidebar", "alias": "o" } } }