workspace-schema.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 ...).
  4. Object.defineProperty(exports, "__esModule", { value: true });
  5. exports.Implement = exports.SchematicsAngularComponentStyle = exports.ChangeDetection = exports.ViewEncapsulation = exports.SchematicsAngularApplicationStyle = exports.PackageManager = exports.Environment = void 0;
  6. /**
  7. * Configure in which environment disk cache is enabled.
  8. */
  9. var Environment;
  10. (function (Environment) {
  11. Environment["All"] = "all";
  12. Environment["Ci"] = "ci";
  13. Environment["Local"] = "local";
  14. })(Environment || (exports.Environment = Environment = {}));
  15. /**
  16. * Specify which package manager tool to use.
  17. *
  18. * The package manager used to install dependencies.
  19. */
  20. var PackageManager;
  21. (function (PackageManager) {
  22. PackageManager["Bun"] = "bun";
  23. PackageManager["Cnpm"] = "cnpm";
  24. PackageManager["Npm"] = "npm";
  25. PackageManager["Pnpm"] = "pnpm";
  26. PackageManager["Yarn"] = "yarn";
  27. })(PackageManager || (exports.PackageManager = PackageManager = {}));
  28. /**
  29. * The type of stylesheet files to be created for components in the application.
  30. *
  31. * The type of stylesheet files to be created for components in the initial project.
  32. */
  33. var SchematicsAngularApplicationStyle;
  34. (function (SchematicsAngularApplicationStyle) {
  35. SchematicsAngularApplicationStyle["Css"] = "css";
  36. SchematicsAngularApplicationStyle["Less"] = "less";
  37. SchematicsAngularApplicationStyle["Sass"] = "sass";
  38. SchematicsAngularApplicationStyle["Scss"] = "scss";
  39. })(SchematicsAngularApplicationStyle || (exports.SchematicsAngularApplicationStyle = SchematicsAngularApplicationStyle = {}));
  40. /**
  41. * Sets the view encapsulation mode for the application's components. This determines how
  42. * component styles are scoped and applied.
  43. *
  44. * Sets the view encapsulation mode for the component. This determines how the component's
  45. * styles are scoped and applied.
  46. *
  47. * Sets the view encapsulation mode for components in the initial project. This determines
  48. * how component styles are scoped and applied. Options include: `Emulated` (default, styles
  49. * are scoped to the component), `None` (styles are global), and `ShadowDom` (styles are
  50. * encapsulated using Shadow DOM).
  51. */
  52. var ViewEncapsulation;
  53. (function (ViewEncapsulation) {
  54. ViewEncapsulation["Emulated"] = "Emulated";
  55. ViewEncapsulation["None"] = "None";
  56. ViewEncapsulation["ShadowDom"] = "ShadowDom";
  57. })(ViewEncapsulation || (exports.ViewEncapsulation = ViewEncapsulation = {}));
  58. /**
  59. * Configures the change detection strategy for the component.
  60. */
  61. var ChangeDetection;
  62. (function (ChangeDetection) {
  63. ChangeDetection["Default"] = "Default";
  64. ChangeDetection["OnPush"] = "OnPush";
  65. })(ChangeDetection || (exports.ChangeDetection = ChangeDetection = {}));
  66. /**
  67. * Specify the type of stylesheet to be created for the component, or `none` to skip
  68. * creating a stylesheet.
  69. */
  70. var SchematicsAngularComponentStyle;
  71. (function (SchematicsAngularComponentStyle) {
  72. SchematicsAngularComponentStyle["Css"] = "css";
  73. SchematicsAngularComponentStyle["Less"] = "less";
  74. SchematicsAngularComponentStyle["None"] = "none";
  75. SchematicsAngularComponentStyle["Sass"] = "sass";
  76. SchematicsAngularComponentStyle["Scss"] = "scss";
  77. })(SchematicsAngularComponentStyle || (exports.SchematicsAngularComponentStyle = SchematicsAngularComponentStyle = {}));
  78. var Implement;
  79. (function (Implement) {
  80. Implement["CanActivate"] = "CanActivate";
  81. Implement["CanActivateChild"] = "CanActivateChild";
  82. Implement["CanDeactivate"] = "CanDeactivate";
  83. Implement["CanMatch"] = "CanMatch";
  84. })(Implement || (exports.Implement = Implement = {}));