Include JS template literal as string type for overrides (#2939)

Allows us to trigger Tailwind completions within template literals in
JSX elements

Release Notes:
- Fixed Tailwind autocomplete not appearing in template literals.
This commit is contained in:
Julia
2023-09-07 14:58:41 -04:00
committed by GitHub
2 changed files with 11 additions and 2 deletions
@@ -1,5 +1,9 @@
(comment) @comment
(string) @string
[
(string)
(template_string)
] @string
[
(jsx_element)
+6 -1
View File
@@ -1,5 +1,10 @@
(comment) @comment
(string) @string
[
(string)
(template_string)
] @string
[
(jsx_element)
(jsx_fragment)