{
    "comments": {
      "lineComment": "//",
      "blockComment": [ "/*", "*/" ]
    },
    "brackets": [
      ["{", "}"],
      ["[", "]"],
      ["(", ")"]
    ],
    "autoClosingPairs": [
          { "open": "{", "close": "}" },
          { "open": "[", "close": "]" },
          { "open": "(", "close": ")" },
          { "open": "\"", "close": "\"", "notIn": ["string"] },
          { "open": "'", "close": "'", "notIn": ["string", "comment"] },
          { "open": "`", "close": "`", "notIn": ["string", "comment"] },
          { "open": "/**", "close": " */", "notIn": ["string"] }
    ],
    "surroundingPairs": [
      ["{", "}"],
      ["[", "]"],
      ["(", ")"],
      ["\"", "\""],
      ["'", "'"],
      ["`", "`"]
    ],
    "folding": {
      "markers": {
        "start": "^<(template|style|script)[^>]*>",
        "end": "^</(template|style|script)>"
      }
    }
  }
