schema.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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. /**
  6. * The package manager used to install dependencies.
  7. */
  8. var 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. */
  18. var 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. */
  29. var 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 = {}));