Switch from svelte to preact or react to render the data after processing.
Can still use svelte for main app, but preact must render in the main section where data is displayed.
This is because JSX is required, and typescript support in the dom is required. Svelte doesn't meet those requirements.
When working with many different complex type interfaces, it becomes very difficult when there is no editor support or suggestions when rendering the dom elements. And also no immediate feedback of static typing errors (eg red underline).
Switch from svelte to preact or react to render the data after processing. Can still use svelte for main app, but preact must render in the main section where data is displayed. This is because JSX is required, and typescript support in the dom is required. Svelte doesn't meet those requirements.
Example of need for JSX:
Example of need for in-dom typescript support:
When working with many different complex type interfaces, it becomes very difficult when there is no editor support or suggestions when rendering the dom elements. And also no immediate feedback of static typing errors (eg red underline).