UNPKG

1.27 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 * The package manager used to install dependencies.
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 * The file extension or preprocessor to use for style files.
17 */
18var Style;
19(function (Style) {
20 Style["Css"] = "css";
21 Style["Less"] = "less";
22 Style["Sass"] = "sass";
23 Style["Scss"] = "scss";
24 Style["Styl"] = "styl";
25})(Style = exports.Style || (exports.Style = {}));
26/**
27 * The view encapsulation strategy to use in the initial project.
28 */
29var ViewEncapsulation;
30(function (ViewEncapsulation) {
31 ViewEncapsulation["Emulated"] = "Emulated";
32 ViewEncapsulation["Native"] = "Native";
33 ViewEncapsulation["None"] = "None";
34 ViewEncapsulation["ShadowDom"] = "ShadowDom";
35})(ViewEncapsulation = exports.ViewEncapsulation || (exports.ViewEncapsulation = {}));