You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
776 B

7 years ago
7 years ago
7 years ago
  1. {
  2. "editor.insertSpaces": true,
  3. "files.exclude": {
  4. "**/node_modules": true,
  5. "**/out": true
  6. },
  7. "files.trimTrailingWhitespace": true,
  8. "search.exclude": {
  9. "**/node_modules": true,
  10. "**/out": true
  11. },
  12. "javascript.format.insertSpaceAfterFunctionKeywordForAnonymousFunctions": false,
  13. "postcssSorting.config": {
  14. "order": [
  15. "custom-properties",
  16. "dollar-variables",
  17. "declarations",
  18. "at-rules",
  19. "rules"
  20. ],
  21. "properties-order": "alphabetical",
  22. "unspecified-properties-position": "bottom"
  23. },
  24. "typescript.tsdk": "./node_modules/typescript/lib" // we want to use the TS server from our node_modules folder to control its version
  25. }