Doctor 🤖D
Deno4y ago
4 replies
Doctor 🤖

is it possible to change how tsx bundles to js?

So I’m wondering if it’s possible to get Deno to convert
<div class="test">Potato</div>
to
{
    tag: "div",
    props: { class: "test" },
    children: [
        "Potato"
    ]
}
when bundling
Was this page helpful?