This module is part of BPL (Balmanth's Personal Library) and provides a set of functions and classes to build interfaces using a custom JSX over TypeScript, but it doesn't provide a renderer.
Using npm:
npm i @balmanth/jsx-coreAfter installing the module, you need to import it as in the following example:
import * as JSX from '@balmanth/jsx-core';And configure your tsconfig.json as in the example below:
{
"jsxFactory": "JSX.create",
"jsx": "react"
}This part isn't needed if you want just to extend the module.
...Then you can follow all the quick reference examples.