UNPKG

529 BJSONView Raw
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "SchematicsAngularSSR",
4 "title": "Angular SSR Options Schema",
5 "type": "object",
6 "properties": {
7 "project": {
8 "type": "string",
9 "description": "The name of the project.",
10 "$default": {
11 "$source": "projectName"
12 }
13 },
14 "skipInstall": {
15 "description": "Skip installing dependency packages.",
16 "type": "boolean",
17 "default": false
18 }
19 },
20 "required": ["project"],
21 "additionalProperties": false
22}