default-options.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. // Export a new default each time
  4. function default_1() {
  5. return {
  6. /* Inline Javascript - @plugin still allowed */
  7. javascriptEnabled: false,
  8. /* Outputs a makefile import dependency list to stdout. */
  9. depends: false,
  10. /* (DEPRECATED) Compress using less built-in compression.
  11. * This does an okay job but does not utilise all the tricks of
  12. * dedicated css compression. */
  13. compress: false,
  14. /* Runs the less parser and just reports errors without any output. */
  15. lint: false,
  16. /* Sets available include paths.
  17. * If the file in an @import rule does not exist at that exact location,
  18. * less will look for it at the location(s) passed to this option.
  19. * You might use this for instance to specify a path to a library which
  20. * you want to be referenced simply and relatively in the less files. */
  21. paths: [],
  22. /* color output in the terminal */
  23. color: true,
  24. /* The strictImports controls whether the compiler will allow an @import inside of either
  25. * @media blocks or (a later addition) other selector blocks.
  26. * See: https://github.com/less/less.js/issues/656 */
  27. strictImports: false,
  28. /* Allow Imports from Insecure HTTPS Hosts */
  29. insecure: false,
  30. /* Allows you to add a path to every generated import and url in your css.
  31. * This does not affect less import statements that are processed, just ones
  32. * that are left in the output css. */
  33. rootpath: '',
  34. /* By default URLs are kept as-is, so if you import a file in a sub-directory
  35. * that references an image, exactly the same URL will be output in the css.
  36. * This option allows you to re-write URL's in imported files so that the
  37. * URL is always relative to the base imported file */
  38. rewriteUrls: false,
  39. /* How to process math
  40. * 0 always - eagerly try to solve all operations
  41. * 1 parens-division - require parens for division "/"
  42. * 2 parens | strict - require parens for all operations
  43. * 3 strict-legacy - legacy strict behavior (super-strict)
  44. */
  45. math: 1,
  46. /* Without this option, less attempts to guess at the output unit when it does maths. */
  47. strictUnits: false,
  48. /* Effectively the declaration is put at the top of your base Less file,
  49. * meaning it can be used but it also can be overridden if this variable
  50. * is defined in the file. */
  51. globalVars: null,
  52. /* As opposed to the global variable option, this puts the declaration at the
  53. * end of your base file, meaning it will override anything defined in your Less file. */
  54. modifyVars: null,
  55. /* This option allows you to specify a argument to go on to every URL. */
  56. urlArgs: ''
  57. };
  58. }
  59. exports.default = default_1;
  60. //# sourceMappingURL=default-options.js.map