UNPKG

@o3r/core

Version:
40 lines (39 loc) 988 B
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "ngGenerateSimpleSyncStoreSchematicsSchema", "title": "Generate Simple Sync Otter Store", "description": "ng generate Simple Sync Otter Store", "properties": { "projectName": { "type": "string", "description": "Name of the project", "$default": { "$source": "projectName" }, "alias": "project" }, "storeName": { "type": "string", "description": "Name of the Store", "x-prompt": "Store name? ", "minLength": 1, "$default": { "$source": "argv", "index": 0 } }, "path": { "type": "string", "description": "Directory containing the stores" }, "skipLinter": { "type": "boolean", "description": "Skip the linter process which includes EsLint and EditorConfig rules applying", "default": false } }, "additionalProperties": true, "required": [ "storeName" ] }