UNPKG

1.34 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 });
5exports.ViewEncapsulation = exports.Style = exports.PackageManager = void 0;
6/**
7 * The package manager used to install dependencies.
8 */
9var PackageManager;
10(function (PackageManager) {
11 PackageManager["Cnpm"] = "cnpm";
12 PackageManager["Npm"] = "npm";
13 PackageManager["Pnpm"] = "pnpm";
14 PackageManager["Yarn"] = "yarn";
15})(PackageManager = exports.PackageManager || (exports.PackageManager = {}));
16/**
17 * The file extension or preprocessor to use for style files.
18 */
19var Style;
20(function (Style) {
21 Style["Css"] = "css";
22 Style["Less"] = "less";
23 Style["Sass"] = "sass";
24 Style["Scss"] = "scss";
25 Style["Styl"] = "styl";
26})(Style = exports.Style || (exports.Style = {}));
27/**
28 * The view encapsulation strategy to use in the initial project.
29 */
30var ViewEncapsulation;
31(function (ViewEncapsulation) {
32 ViewEncapsulation["Emulated"] = "Emulated";
33 ViewEncapsulation["Native"] = "Native";
34 ViewEncapsulation["None"] = "None";
35 ViewEncapsulation["ShadowDom"] = "ShadowDom";
36})(ViewEncapsulation = exports.ViewEncapsulation || (exports.ViewEncapsulation = {}));