Prevent comment strings being accidentally passed as text in JSX. ### Invalid: ```tsx const foo =
// comment
; const foo =
/* comment */
; ``` ### Valid: ```tsx const foo =
{/* comment */}
; ```