aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--languages.toml4
-rw-r--r--runtime/queries/typescript/highlights.scm13
2 files changed, 15 insertions, 2 deletions
diff --git a/languages.toml b/languages.toml
index 8b87cd1d..00eff068 100644
--- a/languages.toml
+++ b/languages.toml
@@ -399,7 +399,7 @@ indent = { tab-width = 2, unit = " " }
[[grammar]]
name = "typescript"
-source = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "3e897ea5925f037cfae2e551f8e6b12eec2a201a", subpath = "typescript" }
+source = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "6aac031ad88dd6317f02ac0bb27d099a553a7d8c", subpath = "typescript" }
[[language]]
name = "tsx"
@@ -413,7 +413,7 @@ indent = { tab-width = 2, unit = " " }
[[grammar]]
name = "tsx"
-source = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "3e897ea5925f037cfae2e551f8e6b12eec2a201a", subpath = "tsx" }
+source = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev = "6aac031ad88dd6317f02ac0bb27d099a553a7d8c", subpath = "tsx" }
[[language]]
name = "css"
diff --git a/runtime/queries/typescript/highlights.scm b/runtime/queries/typescript/highlights.scm
index 7c15cf3d..fc8d110d 100644
--- a/runtime/queries/typescript/highlights.scm
+++ b/runtime/queries/typescript/highlights.scm
@@ -34,6 +34,7 @@
"implements"
"keyof"
"namespace"
+ "override"
] @keyword
[
@@ -62,3 +63,15 @@
((identifier) @type
(#match? @type "^[A-Z]"))
+
+; Literals
+
+[
+ (template_literal_type)
+] @string
+
+; Tokens
+
+(template_type
+ "${" @punctuation.special
+ "}" @punctuation.special) @embedded