UNPKG

@ngrx/schematics

Version:

NgRx Schematics for Angular

116 lines (115 loc) 3.22 kB
{ "$schema": "http://json-schema.org/schema", "$id": "SchematicsNgRxContainer", "title": "NgRx Container Options Schema", "type": "object", "properties": { "path": { "type": "string", "format": "path", "description": "The path to create the component.", "visible": false, "$default": { "$source": "workingDirectory" } }, "project": { "type": "string", "description": "The name of the project.", "aliases": ["p"] }, "name": { "type": "string", "description": "The name of the component.", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "What should be the name of the container component?" }, "inlineStyle": { "description": "Specifies if the style will be in the ts file.", "type": "boolean", "alias": "s" }, "inlineTemplate": { "description": "Specifies if the template will be in the ts file.", "type": "boolean", "alias": "t" }, "viewEncapsulation": { "description": "Specifies the view encapsulation strategy.", "enum": ["Emulated", "Native", "None"], "type": "string", "alias": "v" }, "changeDetection": { "description": "Specifies the change detection strategy.", "enum": ["Default", "OnPush"], "type": "string", "alias": "c" }, "prefix": { "type": "string", "format": "html-selector", "description": "The prefix to apply to generated selectors.", "alias": "p" }, "style": { "description": "The file extension or preprocessor to use for style files.", "type": "string" }, "skipTests": { "type": "boolean", "description": "When true, does not create test files." }, "flat": { "type": "boolean", "description": "Flag to indicate if a dir is created." }, "skipImport": { "type": "boolean", "description": "Flag to skip the module import." }, "selector": { "type": "string", "format": "html-selector", "description": "The selector to use for the component." }, "module": { "type": "string", "description": "Allows specification of the declaring module.", "alias": "m" }, "export": { "type": "boolean", "description": "Specifies if declaring module exports the component." }, "state": { "type": "string", "description": "Specifies the path to the state exports." }, "stateInterface": { "type": "string", "default": "State", "description": "Specifies the interface for the state." }, "testDepth": { "description": "Specifies whether to create a unit test or an integration test.", "enum": ["unit", "integration"], "type": "string", "default": "integration" }, "standalone": { "description": "Whether the generated component is standalone.", "type": "boolean", "default": true }, "displayBlock": { "description": "Specifies if the style will contain :host { display: block; }.", "type": "boolean", "alias": "b" } }, "required": [] }