source: trip-planner-front/node_modules/@angular/cli/lib/config/workspace-schema.js@ 8d391a1

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

initial commit

  • Property mode set to 100644
File size: 2.9 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.Implement = exports.SchematicsAngularComponentStyle = exports.ChangeDetection = exports.ViewEncapsulation = exports.SchematicsAngularApplicationStyle = exports.PackageManager = void 0;
6/**
7 * Specify which package manager tool to use.
8 *
9 * The package manager used to install dependencies.
10 */
11var PackageManager;
12(function (PackageManager) {
13 PackageManager["Cnpm"] = "cnpm";
14 PackageManager["Npm"] = "npm";
15 PackageManager["Pnpm"] = "pnpm";
16 PackageManager["Yarn"] = "yarn";
17})(PackageManager = exports.PackageManager || (exports.PackageManager = {}));
18/**
19 * The file extension or preprocessor to use for style files.
20 */
21var SchematicsAngularApplicationStyle;
22(function (SchematicsAngularApplicationStyle) {
23 SchematicsAngularApplicationStyle["Css"] = "css";
24 SchematicsAngularApplicationStyle["Less"] = "less";
25 SchematicsAngularApplicationStyle["Sass"] = "sass";
26 SchematicsAngularApplicationStyle["Scss"] = "scss";
27})(SchematicsAngularApplicationStyle = exports.SchematicsAngularApplicationStyle || (exports.SchematicsAngularApplicationStyle = {}));
28/**
29 * The view encapsulation strategy to use in the new application.
30 *
31 * The view encapsulation strategy to use in the new component.
32 *
33 * The view encapsulation strategy to use in the initial project.
34 */
35var ViewEncapsulation;
36(function (ViewEncapsulation) {
37 ViewEncapsulation["Emulated"] = "Emulated";
38 ViewEncapsulation["None"] = "None";
39 ViewEncapsulation["ShadowDom"] = "ShadowDom";
40})(ViewEncapsulation = exports.ViewEncapsulation || (exports.ViewEncapsulation = {}));
41/**
42 * The change detection strategy to use in the new component.
43 */
44var ChangeDetection;
45(function (ChangeDetection) {
46 ChangeDetection["Default"] = "Default";
47 ChangeDetection["OnPush"] = "OnPush";
48})(ChangeDetection = exports.ChangeDetection || (exports.ChangeDetection = {}));
49/**
50 * The file extension or preprocessor to use for style files, or 'none' to skip generating
51 * the style file.
52 */
53var SchematicsAngularComponentStyle;
54(function (SchematicsAngularComponentStyle) {
55 SchematicsAngularComponentStyle["Css"] = "css";
56 SchematicsAngularComponentStyle["Less"] = "less";
57 SchematicsAngularComponentStyle["None"] = "none";
58 SchematicsAngularComponentStyle["Sass"] = "sass";
59 SchematicsAngularComponentStyle["Scss"] = "scss";
60})(SchematicsAngularComponentStyle = exports.SchematicsAngularComponentStyle || (exports.SchematicsAngularComponentStyle = {}));
61var Implement;
62(function (Implement) {
63 Implement["CanActivate"] = "CanActivate";
64 Implement["CanActivateChild"] = "CanActivateChild";
65 Implement["CanDeactivate"] = "CanDeactivate";
66 Implement["CanLoad"] = "CanLoad";
67})(Implement = exports.Implement || (exports.Implement = {}));
Note: See TracBrowser for help on using the repository browser.