settings.json 606 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "files.associations": {
  3. "*.mly": "ocaml",
  4. "*.ml": "ocaml",
  5. "Makefile.*": "makefile"
  6. },
  7. "[ocaml]": {
  8. "editor.tabSize": 4
  9. },
  10. "files.exclude": {
  11. "**/_build": true
  12. },
  13. "reason.server.languages": [
  14. "ocaml"
  15. ],
  16. "haxe.diagnosticsPathFilter": "${workspaceRoot}/std",
  17. "npm.autoDetect": "off",
  18. "json.schemas": [
  19. {
  20. "fileMatch": [
  21. "src-json/define.json"
  22. ],
  23. "url": "./.vscode/schemas/define.schema.json"
  24. },
  25. {
  26. "fileMatch": [
  27. "src-json/meta.json"
  28. ],
  29. "url": "./.vscode/schemas/meta.schema.json"
  30. }
  31. ],
  32. "ocaml.sandbox": {
  33. "kind": "opam",
  34. "switch": "default"
  35. }
  36. }