UNPKG

@o3r/configuration

Version:

This module contains configuration-related features such as CMS compatibility, Configuration override, store and debugging. It enables your application runtime configuration and comes with an integrated ng builder to help you generate configurations suppo

40 lines (39 loc) 1.12 kB
{ "$schema": "http://json-schema.org/draft-07/schema", "$id": "NgAddConfigSchematicsSchema", "title": "Add Otter Configuration to an existing component", "description": "Add Otter Configuration to an existing component", "properties": { "projectName": { "type": "string", "description": "Project name", "$default": { "$source": "projectName" }, "alias": "project" }, "path": { "type": "string", "description": "Path to the component" }, "skipLinter": { "type": "boolean", "description": "Skip the linter process which includes EsLint and EditorConfig rules applying", "default": false }, "exposeComponent": { "type": "boolean", "description": "Should change a component into an exposed component, to have it extracted in CMS metadata", "default": true }, "useSignal": { "type": "boolean", "description": "Should add a config signal instead of observable in the component.", "default": false } }, "additionalProperties": true, "required": [ "path" ] }