-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathschema.d.ts
64 lines (64 loc) · 1.38 KB
/
schema.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/**
* SSR Dev Server target options for Build Facade.
*/
export type Schema = {
/**
* Browser target to build.
*/
browserTarget: string;
/**
* Host to listen on.
*/
host?: string;
/**
* Launch the development server in inspector mode and listen on address and port
* '127.0.0.1:9229'.
*/
inspect?: boolean;
/**
* Opens the url in default browser.
*/
open?: boolean;
/**
* Port to start the development server at. Default is 4200. Pass 0 to get a dynamically
* assigned port.
*/
port?: number;
/**
* Log progress to the console while building.
*/
progress?: boolean;
/**
* Proxy configuration file.
*/
proxyConfig?: string;
/**
* The URL that the browser client should use to connect to the development server. Use for
* a complex dev server setup, such as one with reverse proxies.
*/
publicHost?: string;
/**
* Server target to build.
*/
serverTarget: string;
/**
* Serve using HTTPS.
*/
ssl?: boolean;
/**
* SSL certificate to use for serving HTTPS.
*/
sslCert?: string;
/**
* SSL key to use for serving HTTPS.
*/
sslKey?: string;
/**
* Adds more details to output logging.
*/
verbose?: boolean;
/**
* Rebuild on change.
*/
watch?: boolean;
};