UNPKG

509 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "SchematicsAngularAppShell",
4 "title": "Angular AppShell Options Schema",
5 "type": "object",
6 "description": "Generates an application shell for running a server-side version of an app.",
7 "additionalProperties": false,
8 "properties": {
9 "project": {
10 "type": "string",
11 "description": "The name of the related client app.",
12 "$default": {
13 "$source": "projectName"
14 }
15 }
16 },
17 "required": ["project"]
18}