settings.json 853 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "editor.tabSize": 4,
  3. "editor.insertSpaces": false,
  4. "editor.detectIndentation": false,
  5. "liveSassCompile.settings.watchOnLaunch": true,
  6. "liveSassCompile.settings.showOutputWindowOn": "Information",
  7. "liveSassCompile.settings.forceBaseDirectory": "/src-php/public/assets/bstmpl/scss",
  8. "liveSassCompile.settings.formats":[
  9. {
  10. "format": "expanded",
  11. "extensionName": ".css",
  12. "savePath": "src-php/public/assets/bstmpl/css"
  13. }
  14. ],
  15. "liveSassCompile.settings.excludeList": [
  16. "**/node_modules/**",
  17. ".vscode/**",
  18. "**/rocket/**",
  19. "**/font-awesome/**",
  20. "**/n2nutil-bootstrap/**",
  21. "**/bootstrap/**",
  22. "**/hangar/**",
  23. "**/example-layout.scss"
  24. ],
  25. "liveSassCompile.settings.autoprefix": [
  26. "> 1%",
  27. "last 2 versions"
  28. ]
  29. }