@ngrx/store-devtools
Version:
Developer tools for @ngrx/store
46 lines (45 loc) • 1.4 kB
JSON
{
"$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"
},
"maxAge": {
"type": "number",
"default": 25,
"description": "number (>1) | 0 - maximum allowed actions to be stored in the history tree. The oldest actions are removed once maxAge is reached. It's critical for performance. 0 is infinite. Default is 25 for performance reasons."
},
"autoPause": {
"type": "boolean",
"default": false,
"description": "boolean - pauses recording actions and state changes when the extension window is not open."
}
},
"required": []
}