In stencil's.js TSX elements attribute for the class selector is the class
instead of className
(as in React).
Can't find a way in VSCode to change the class attribute's name for emmet's expansion.
Tried preferences for emmet, but it doesn't help.
typescript .st-form__upload
expands to
<div className="st-form__upload"></div>
but I need
<div class="st-form__upload"></div>
Does anybody have the same issue?