Last change
on this file since 84d0fbb was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
717 bytes
|
Line | |
---|
1 | /**
|
---|
2 | * Pass this schematic to the "run" command to set up server-side rendering for an app.
|
---|
3 | */
|
---|
4 | export interface Schema {
|
---|
5 | /**
|
---|
6 | * The name of the application folder.
|
---|
7 | */
|
---|
8 | appDir?: string;
|
---|
9 | /**
|
---|
10 | * The app identifier to use for transition.
|
---|
11 | */
|
---|
12 | appId?: string;
|
---|
13 | /**
|
---|
14 | * The name of the main entry-point file.
|
---|
15 | */
|
---|
16 | main?: string;
|
---|
17 | /**
|
---|
18 | * The name of the project.
|
---|
19 | */
|
---|
20 | project: string;
|
---|
21 | /**
|
---|
22 | * The name of the root NgModule class.
|
---|
23 | */
|
---|
24 | rootModuleClassName?: string;
|
---|
25 | /**
|
---|
26 | * The name of the root NgModule file.
|
---|
27 | */
|
---|
28 | rootModuleFileName?: string;
|
---|
29 | /**
|
---|
30 | * Do not install packages for dependencies.
|
---|
31 | */
|
---|
32 | skipInstall?: boolean;
|
---|
33 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.