compilerconfig.json.defaults 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. {
  2. "compilers": {
  3. "less": {
  4. "autoPrefix": "",
  5. "cssComb": "none",
  6. "ieCompat": true,
  7. "math": null,
  8. "strictMath": false,
  9. "strictUnits": false,
  10. "relativeUrls": true,
  11. "rootPath": "",
  12. "sourceMapRoot": "",
  13. "sourceMapBasePath": "",
  14. "sourceMap": false
  15. },
  16. "sass": {
  17. "autoPrefix": "",
  18. "loadPaths": "",
  19. "style": "expanded",
  20. "relativeUrls": true,
  21. "sourceMap": false
  22. },
  23. "nodesass": {
  24. "autoPrefix": "",
  25. "includePath": "",
  26. "indentType": "space",
  27. "indentWidth": 2,
  28. "outputStyle": "nested",
  29. "precision": 5,
  30. "relativeUrls": true,
  31. "sourceMapRoot": "",
  32. "lineFeed": "",
  33. "sourceMap": false
  34. },
  35. "stylus": {
  36. "sourceMap": false
  37. },
  38. "babel": {
  39. "sourceMap": false
  40. },
  41. "coffeescript": {
  42. "bare": false,
  43. "runtimeMode": "node",
  44. "sourceMap": false
  45. },
  46. "handlebars": {
  47. "root": "",
  48. "noBOM": false,
  49. "name": "",
  50. "namespace": "",
  51. "knownHelpersOnly": false,
  52. "forcePartial": false,
  53. "knownHelpers": [],
  54. "commonjs": "",
  55. "amd": false,
  56. "sourceMap": false
  57. }
  58. },
  59. "minifiers": {
  60. "css": {
  61. "enabled": true,
  62. "termSemicolons": true,
  63. "gzip": false
  64. },
  65. "javascript": {
  66. "enabled": true,
  67. "termSemicolons": true,
  68. "gzip": false
  69. }
  70. }
  71. }