Solid JSX Transform
Is there no lightweight way to transpile Solid JSX? With react or preact I can do a very nice on-the-fly transpilation for my application's JSX with just a 200kb js file that I can call to transform them. And for doing real builds, esbuild has it built in for react and preact. It seems like there isn't a very easy way to use Solid JSX if I am not using Node or if I wanted to. I could do a standard JSX transform to hyperscript but I would rather not do that as it would be sacrificing a lot. My work is fairly restrictive and I would love to be using Solid with JSX. So if anyone knows a lightweight way to do it both for build time and to do JSX string to JS string so I can transpile JSX files "in the browser" like react/preact. Or any way I could build this myself without taking an insane amount of time.
