UNPKG

1.75 kBJavaScriptView Raw
1"use strict";
2// THIS FILE IS AUTOMATICALLY GENERATED. TO UPDATE THIS FILE YOU NEED TO CHANGE THE
3// CORRESPONDING JSON SCHEMA FILE, THEN RUN devkit-admin build (or bazel build ...).
4Object.defineProperty(exports, "__esModule", { value: true });
5/**
6 * Specify which package manager tool to use.
7 */
8var PackageManager;
9(function (PackageManager) {
10 PackageManager["Cnpm"] = "cnpm";
11 PackageManager["Npm"] = "npm";
12 PackageManager["Pnpm"] = "pnpm";
13 PackageManager["Yarn"] = "yarn";
14})(PackageManager = exports.PackageManager || (exports.PackageManager = {}));
15/**
16 * Specifies the change detection strategy.
17 */
18var ChangeDetection;
19(function (ChangeDetection) {
20 ChangeDetection["Default"] = "Default";
21 ChangeDetection["OnPush"] = "OnPush";
22})(ChangeDetection = exports.ChangeDetection || (exports.ChangeDetection = {}));
23/**
24 * The file extension or preprocessor to use for style files.
25 */
26var Style;
27(function (Style) {
28 Style["Css"] = "css";
29 Style["Less"] = "less";
30 Style["Sass"] = "sass";
31 Style["Scss"] = "scss";
32 Style["Styl"] = "styl";
33})(Style = exports.Style || (exports.Style = {}));
34/**
35 * Specifies the view encapsulation strategy.
36 */
37var ViewEncapsulation;
38(function (ViewEncapsulation) {
39 ViewEncapsulation["Emulated"] = "Emulated";
40 ViewEncapsulation["Native"] = "Native";
41 ViewEncapsulation["None"] = "None";
42 ViewEncapsulation["ShadowDom"] = "ShadowDom";
43})(ViewEncapsulation = exports.ViewEncapsulation || (exports.ViewEncapsulation = {}));
44/**
45 * The scope for the generated routing.
46 */
47var RoutingScope;
48(function (RoutingScope) {
49 RoutingScope["Child"] = "Child";
50 RoutingScope["Root"] = "Root";
51})(RoutingScope = exports.RoutingScope || (exports.RoutingScope = {}));