ng-alain
Version:
Schematics specific to NG-ALAIN
34 lines (33 loc) • 809 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "SchematicsNgAlainPlugin",
"title": "NgAlain Plugin Options Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the plugin.",
"$default": {
"$source": "argv",
"index": 0
}
},
"type": {
"description": "Specifies the type of operation.",
"enum": ["add", "remove"],
"type": "string",
"alias": "t",
"default": "add"
},
"project": {
"type": "string",
"description": "The name of the project."
},
"defaultLanguage": {
"type": "string",
"description": "Specify default language [https://ng-alain.com/docs/i18n]."
}
},
"required": [],
"additionalProperties": true
}