koala-config.json 888 B

1234567891011121314151617181920212223242526272829
  1. // Dust 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": [],
  13. // Options of Compilers.
  14. "options": {
  15. // "key": "val",
  16. // "key2": "val2"
  17. // ...
  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": ["/home/bachir/Developer/codekitframeworks/gui_ck_fw", "/home/bachir/Developer/codekitframeworks/bootstrap/less"]
  25. }