UNPKG

@ngrx/store

Version:

RxJS powered Redux for Angular apps

56 lines (55 loc) 1.45 kB
{ "$schema": "http://json-schema.org/schema", "$id": "SchematicsNgRxRootState", "title": "NgRx Root State Management Options Schema", "type": "object", "properties": { "skipPackageJson": { "type": "boolean", "default": false, "description": "Do not add @ngrx/store as dependency to package.json (e.g., --skipPackageJson)." }, "path": { "type": "string", "format": "path", "description": "The path to create the state.", "visible": false, "$default": { "$source": "workingDirectory" } }, "project": { "type": "string", "description": "The name of the project.", "aliases": ["p"] }, "module": { "type": "string", "default": "app", "description": "Allows specification of the declaring module.", "alias": "m", "subtype": "filepath" }, "statePath": { "type": "string", "default": "reducers" }, "stateInterface": { "type": "string", "default": "State", "description": "Specifies the interface for the state.", "alias": "si" }, "minimal": { "type": "boolean", "default": true, "description": "Setup state management without registering initial reducers." }, "skipESLintPlugin": { "type": "boolean", "default": false, "description": "Do not register the NgRx ESLint Plugin." } }, "required": [] }