@schematics/angular
Version:
Schematics specific to Angular
41 lines (40 loc) • 997 B
JSON
{
"$schema": "http://json-schema.org/schema",
"id": "SchematicsAngularWorkspace",
"title": "Angular Workspace Options Schema",
"type": "object",
"properties": {
"name": {
"description": "The name of the workspace.",
"type": "string",
"format": "html-selector",
"$default": {
"$source": "argv",
"index": 0
}
},
"newProjectRoot": {
"description": "The path where new projects will be created.",
"type": "string",
"visible": "false"
},
"version": {
"type": "string",
"description": "The version of the Angular CLI to use.",
"visible": false,
"$default": {
"$source": "ng-cli-version"
}
},
"minimal": {
"description": "When true, creates a workspace without any testing frameworks. (Use for learning purposes only.)",
"type": "boolean",
"default": false,
"x-user-analytics": 14
}
},
"required": [
"name",
"version"
]
}