123456789101112131415161718192021222324252627282930313233343536 |
- {
- "files.associations": {
- "*.mly": "ocaml",
- "*.ml": "ocaml",
- "Makefile.*": "makefile"
- },
- "[ocaml]": {
- "editor.tabSize": 4
- },
- "files.exclude": {
- "**/_build": true
- },
- "reason.server.languages": [
- "ocaml"
- ],
- "haxe.diagnosticsPathFilter": "${workspaceRoot}/std",
- "npm.autoDetect": "off",
- "json.schemas": [
- {
- "fileMatch": [
- "src-json/define.json"
- ],
- "url": "./.vscode/schemas/define.schema.json"
- },
- {
- "fileMatch": [
- "src-json/meta.json"
- ],
- "url": "./.vscode/schemas/meta.schema.json"
- }
- ],
- "ocaml.sandbox": {
- "kind": "opam",
- "switch": "default"
- }
- }
|