angular/vscode-ng-language-service/syntaxes/template.json
Joey Perrott 863c7eaafe build: migrate vscode extension into repo (#63924)
Migrate the vscode extension for angular into this repository.

PR Close #63924
2025-09-24 20:24:32 +00:00

31 lines
582 B
JSON

{
"scopeName": "template.ng",
"injectionSelector": "L:text.html -comment",
"patterns": [
{
"include": "#interpolation"
}
],
"repository": {
"interpolation": {
"begin": "{{",
"beginCaptures": {
"0": {
"name": "punctuation.definition.block.ts"
}
},
"end": "}}",
"endCaptures": {
"0": {
"name": "punctuation.definition.block.ts"
}
},
"contentName": "expression.ng",
"patterns": [
{
"include": "expression.ng"
}
]
}
}
}