Fix precedence of svelte typescript injection (#9777)

pull/9789/head
Michael Davis 4 months ago committed by GitHub
parent f04dafa2e2
commit d769fadde0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -19,13 +19,6 @@
(quoted_attribute_value (attribute_value) @css))
(#eq? @_attr "style"))
((script_element
(raw_text) @injection.content)
(#set! injection.language "javascript"))
((raw_text_expr) @injection.content
(#set! injection.language "javascript"))
(
(script_element
(start_tag
@ -36,5 +29,12 @@
(#set! injection.language "typescript")
)
((script_element
(raw_text) @injection.content)
(#set! injection.language "javascript"))
((raw_text_expr) @injection.content
(#set! injection.language "javascript"))
((comment) @injection.content
(#set! injection.language "comment"))

Loading…
Cancel
Save