18e7cc5af9
* wip: scaffold astro extension * wip: scaffold astro extension * WIP: vscode extension * fix: autoCloseBefore * chore: update package.json * fix: use tsx instead of plain ts * chore: remove dist files * chore: remove comments * chore: cleanup package build process, switch build to esbuild * refactor: use shared esbuild config Co-authored-by: Nate Moore <nate@skypack.dev>
36 lines
863 B
JSON
36 lines
863 B
JSON
{
|
|
"comments": {
|
|
"blockComment": [ "<!--", "-->" ]
|
|
},
|
|
"brackets": [
|
|
["---", "---"],
|
|
["<!--", "-->"],
|
|
["<", ">"],
|
|
["{", "}"],
|
|
["(", ")"]
|
|
],
|
|
"autoClosingPairs": [
|
|
{ "open": "{", "close": "}"},
|
|
{ "open": "[", "close": "]"},
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "'", "close": "'" },
|
|
{ "open": "\"", "close": "\"" },
|
|
{ "open": "<!--", "close": "-->", "notIn": [ "comment", "string" ]},
|
|
{ "open": "/**", "close": " */", "notIn": ["string"] }
|
|
],
|
|
"autoCloseBefore": ";:.,=}])>` \n\t",
|
|
"surroundingPairs": [
|
|
{ "open": "'", "close": "'" },
|
|
{ "open": "\"", "close": "\"" },
|
|
{ "open": "{", "close": "}"},
|
|
{ "open": "[", "close": "]"},
|
|
{ "open": "(", "close": ")" },
|
|
{ "open": "<", "close": ">" }
|
|
],
|
|
"folding": {
|
|
"markers": {
|
|
"start": "^\\s*<!--\\s*#region\\b.*-->",
|
|
"end": "^\\s*<!--\\s*#endregion\\b.*-->"
|
|
}
|
|
}
|
|
}
|