koala-config.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Less project settings, you can edit it and set custom settings.
  2. {
  3. // The mappings of source directory and output directory
  4. "mappings": [
  5. // {
  6. // "src": "path/to/source",
  7. // "dest": "path/to/output"
  8. // }
  9. ],
  10. // Add the ignore rules that Koala will not search them.
  11. // e.g. ["*.json", "*.txt", "test", "path/libs"]
  12. "ignores": ["*.css"],
  13. // Compile options of LESS.
  14. "options": {
  15. // Output style. Can be normal (default), compress.
  16. "outputStyle": "normal",
  17. // Outputs filename and line numbers, which will output the debug info within comments.
  18. "lineComments": false,
  19. // Outputs filename and line numbers, which will output the information within a fake media query which is compatible with the SASS format.
  20. "debugInfo": true,
  21. "strictMath": false,
  22. "strictUnits": false,
  23. // Create sourcemap files next to the generated CSS files
  24. "sourceMap": false,
  25. // auto add vendor prefixes to rules
  26. "autoprefix": false
  27. },
  28. // Other compile options.
  29. // e.g, ["--strict-imports", ... ,"--rootpath=URL"].
  30. // Run the command 'lessc -h' to see more options.
  31. "customOptions": [],
  32. // An array of filesystem paths or importers which should be searched for LESS templates imported with the @import directive.
  33. "includePaths": ["../../bootstrap/"]
  34. }