source: trip-planner-front/node_modules/@angular/cli/commands/serve.d.ts@ ceaed42

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

initial commit

  • Property mode set to 100644
File size: 1.2 KB
Line 
1/**
2 * Builds and serves your app, rebuilding on file changes.
3 */
4export interface Schema {
5 /**
6 * One or more named builder configurations as a comma-separated list as specified in the
7 * "configurations" section of angular.json.
8 * The builder uses the named configurations to run the given target.
9 * For more information, see
10 * https://angular.io/guide/workspace-config#alternate-build-configurations.
11 * Setting this explicitly overrides the "--prod" flag.
12 */
13 configuration?: string;
14 /**
15 * Shows a help message for this command in the console.
16 */
17 help?: HelpUnion;
18 /**
19 * Shorthand for "--configuration=production".
20 * Set the build configuration to the production target.
21 * By default, the production target is set up in the workspace configuration such that all
22 * builds make use of bundling, limited tree-shaking, and also limited dead code elimination.
23 */
24 prod?: boolean;
25 /**
26 * The name of the project to build. Can be an application or a library.
27 */
28 project?: string;
29}
30/**
31 * Shows a help message for this command in the console.
32 */
33export declare type HelpUnion = boolean | HelpEnum;
34export declare enum HelpEnum {
35 HelpJson = "JSON",
36 Json = "json"
37}
Note: See TracBrowser for help on using the repository browser.