We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aba0b70 + 9d16225 commit c146d1fCopy full SHA for c146d1f
src/compiler/emitter.ts
@@ -2561,6 +2561,7 @@ namespace ts {
2561
function emitJsxSelfClosingElement(node: JsxSelfClosingElement) {
2562
writePunctuation("<");
2563
emitJsxTagName(node.tagName);
2564
+ emitTypeArguments(node, node.typeArguments);
2565
writeSpace();
2566
emit(node.attributes);
2567
writePunctuation("/>");
@@ -2577,6 +2578,7 @@ namespace ts {
2577
2578
2579
if (isJsxOpeningElement(node)) {
2580
2581
2582
if (node.attributes.properties && node.attributes.properties.length > 0) {
2583
2584
}
0 commit comments