How does one use a custom JSX transform in Deno?
For example, I need this:
const div = <div>hello</div>
to be essentially this at runtime:
const div = document.createElement('div')
div.textContent = 'hello'
In non-Deno projects, this can be achieved with https://www.npmjs.com/package/babel-preset-solid for Babel, for example.