koala-config.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334
  1. // Less project settings, you can edit it and set custom settings.
  2. {
  3. "language": "less",
  4. // Set this to the root of your project. Defaults to "/".
  5. "http_path": "/",
  6. // The directory where the less stylesheets are kept. It is relative to the http_path.
  7. "less_dir":"less",
  8. // The directory where the css stylesheets are kept. It is relative to the http_path.
  9. "css_dir": "css",
  10. // Compile options of LESS.
  11. "options": {
  12. // Output style. Can be normal (default), compress, yuicompress.
  13. "output_style": "normal",
  14. // Outputs filename and line numbers, which will output the debug info within comments.
  15. "line_comments": false,
  16. // Outputs filename and line numbers, which will output the information within a fake media query which is compatible with the SASS format.
  17. "debug_info": false
  18. },
  19. // Other compile options.
  20. // e.g, ["--strict-imports", ... ,"--rootpath=URL"].
  21. // Run the command 'lessc -h' to see more options.
  22. "custom_options": [],
  23. // An array of filesystem paths or importers which should be searched for LESS templates imported with the @import directive.
  24. // "include_paths": ["components/gui_ck_fw", "components/bootstrap/less"]
  25. }