UNPKG

@o3r/core

Version:
39 lines (38 loc) 962 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" } }, "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" ] }