@o3r/core
Version:
Core of the Otter Framework
33 lines (32 loc) • 847 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "convertToO3rComponentSchematicsSchema",
"title": "Convert an Angular component into an Otter component",
"description": "Convert an Angular component into an Otter component",
"properties": {
"path": {
"type": "string",
"description": "Path to the component to convert"
},
"skipLinter": {
"type": "boolean",
"description": "Skip the linter process which includes EsLint and EditorConfig rules applying",
"default": false
},
"componentType": {
"type": "string",
"description": "Type of the component",
"enum": [
"Component",
"ExposedComponent",
"Block",
"Page"
],
"default": "Component"
}
},
"additionalProperties": true,
"required": [
"path"
]
}