source: trip-planner-front/node_modules/@schematics/angular/universal/schema.json@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.5 KB
Line 
1{
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "SchematicsAngularUniversalApp",
4 "title": "Angular Universal App Options Schema",
5 "type": "object",
6 "additionalProperties": false,
7 "description": "Pass this schematic to the \"run\" command to set up server-side rendering for an app.",
8 "properties": {
9 "project": {
10 "type": "string",
11 "description": "The name of the project.",
12 "$default": {
13 "$source": "projectName"
14 }
15 },
16 "appId": {
17 "type": "string",
18 "format": "html-selector",
19 "description": "The app identifier to use for transition.",
20 "default": "serverApp"
21 },
22 "main": {
23 "type": "string",
24 "format": "path",
25 "description": "The name of the main entry-point file.",
26 "default": "main.server.ts"
27 },
28 "appDir": {
29 "type": "string",
30 "format": "path",
31 "description": "The name of the application folder.",
32 "default": "app"
33 },
34 "rootModuleFileName": {
35 "type": "string",
36 "format": "path",
37 "description": "The name of the root NgModule file.",
38 "default": "app.server.module.ts"
39 },
40 "rootModuleClassName": {
41 "type": "string",
42 "description": "The name of the root NgModule class.",
43 "default": "AppServerModule"
44 },
45 "skipInstall": {
46 "description": "Do not install packages for dependencies.",
47 "type": "boolean",
48 "default": false
49 }
50 },
51 "required": ["project"]
52}
Note: See TracBrowser for help on using the repository browser.