@jojoxd/barrels-nx
Version:
Barrels NX Plugin
33 lines (32 loc) • 862 B
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "Configuration",
"title": "",
"type": "object",
"properties": {
"name": {
"type": "string",
"aliases": ["project", "projectName"],
"description": "Project for which to generate Barrels configuration.",
"$default": {
"$source": "argv",
"index": 0
},
"x-prompt": "For which project do you want to generate Barrels configuration?",
"x-dropdown": "projects",
"x-priority": "important"
},
"inlineConfig": {
"description": "Add configuration in project.json instead of .barrels.json",
"type": "boolean",
"default": false
},
"skipFormat": {
"description": "Skip formatting files.",
"type": "boolean",
"default": false,
"x-priority": "internal"
}
},
"required": ["name"]
}