ngx-spec
Version:
A missing schematics for creating missing / recreating Angular 6+ specs
41 lines (40 loc) • 1 kB
JSON
{
"$schema": "http://json-schema.org/schema",
"$id": "SchematicsSpec",
"title": "Angular Spec Options Schema",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name / filename of the spec target.",
"$default": {
"$source": "argv",
"index": 0
}
},
"standalone": {
"description": "Whether the generated component is standalone.",
"type": "boolean",
"default": false,
"x-user-analytics": 15
},
"path": {
"type": "string",
"format": "path",
"description": "The path to create the spec.",
"visible": false
},
"project": {
"type": "string",
"description": "The name of the project.",
"$default": {
"$source": "projectName"
}
},
"ignoreTargetNotFound": {
"type": "boolean",
"description": "The directive to force creating the spec when the target file is not present."
}
},
"required": []
}