24 lines
654 B
JSON
24 lines
654 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||
|
"$id": "SchematicsAngularServerApp",
|
||
|
"title": "Angular Server App Options Schema",
|
||
|
"type": "object",
|
||
|
"additionalProperties": false,
|
||
|
"description": "Pass this schematic to the \"run\" command to set up server-side rendering for an app.",
|
||
|
"properties": {
|
||
|
"project": {
|
||
|
"type": "string",
|
||
|
"description": "The name of the project.",
|
||
|
"$default": {
|
||
|
"$source": "projectName"
|
||
|
}
|
||
|
},
|
||
|
"skipInstall": {
|
||
|
"description": "Do not install packages for dependencies.",
|
||
|
"type": "boolean",
|
||
|
"default": false
|
||
|
}
|
||
|
},
|
||
|
"required": ["project"]
|
||
|
}
|