@rxap/plugin-library
Version:
This package provides generators and executors for managing and maintaining Nx plugin libraries. It includes functionality for generating index exports, fixing dependencies, generating JSON schemas, and more. It helps streamline the development process fo
37 lines (36 loc) • 1.02 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "IndexExport",
"title": "",
"type": "object",
"properties": {
"projects": {
"alias": "project",
"type": "array",
"items": {
"type": "string"
},
"description": "The list of projects to generate index exports for.",
"examples": [["my-lib", "another-lib"]]
},
"project": {
"type": "string",
"description": "The name of a single project to generate an index export for.",
"examples": ["my-lib"]
},
"generateRootExport": {
"type": "boolean",
"default": true,
"description": "Whether to generate an 'index.ts' file in the source root of the project."
},
"additionalEntryPoints": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of additional sub-directory entry points to include in the index export.",
"examples": [["src/lib/components", "src/lib/services"]]
}
},
"required": []
}