UNPKG

ngx-spec

Version:

A missing schematics for creating missing / recreating Angular 6+ specs

44 lines (43 loc) 1.07 kB
{ "$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", "$default": { "$source": "workingDirectory" }, "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": [] }