source: trip-planner-front/node_modules/@angular-devkit/build-angular/src/browser/schema.js

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

initial commit

  • Property mode set to 100644
File size: 2.1 KB
Line 
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.OutputHashing = exports.InlineStyleLanguage = exports.I18NMissingTranslation = exports.CrossOrigin = exports.Type = void 0;
6/**
7 * The type of budget.
8 */
9var Type;
10(function (Type) {
11 Type["All"] = "all";
12 Type["AllScript"] = "allScript";
13 Type["Any"] = "any";
14 Type["AnyComponentStyle"] = "anyComponentStyle";
15 Type["AnyScript"] = "anyScript";
16 Type["Bundle"] = "bundle";
17 Type["Initial"] = "initial";
18})(Type = exports.Type || (exports.Type = {}));
19/**
20 * Define the crossorigin attribute setting of elements that provide CORS support.
21 */
22var CrossOrigin;
23(function (CrossOrigin) {
24 CrossOrigin["Anonymous"] = "anonymous";
25 CrossOrigin["None"] = "none";
26 CrossOrigin["UseCredentials"] = "use-credentials";
27})(CrossOrigin = exports.CrossOrigin || (exports.CrossOrigin = {}));
28/**
29 * How to handle missing translations for i18n.
30 */
31var I18NMissingTranslation;
32(function (I18NMissingTranslation) {
33 I18NMissingTranslation["Error"] = "error";
34 I18NMissingTranslation["Ignore"] = "ignore";
35 I18NMissingTranslation["Warning"] = "warning";
36})(I18NMissingTranslation = exports.I18NMissingTranslation || (exports.I18NMissingTranslation = {}));
37/**
38 * The stylesheet language to use for the application's inline component styles.
39 */
40var InlineStyleLanguage;
41(function (InlineStyleLanguage) {
42 InlineStyleLanguage["Css"] = "css";
43 InlineStyleLanguage["Less"] = "less";
44 InlineStyleLanguage["Sass"] = "sass";
45 InlineStyleLanguage["Scss"] = "scss";
46})(InlineStyleLanguage = exports.InlineStyleLanguage || (exports.InlineStyleLanguage = {}));
47/**
48 * Define the output filename cache-busting hashing mode.
49 */
50var OutputHashing;
51(function (OutputHashing) {
52 OutputHashing["All"] = "all";
53 OutputHashing["Bundles"] = "bundles";
54 OutputHashing["Media"] = "media";
55 OutputHashing["None"] = "none";
56})(OutputHashing = exports.OutputHashing || (exports.OutputHashing = {}));
Note: See TracBrowser for help on using the repository browser.