I have a sample code for invoking a Teams Task Modules, where a typescript file is being render in a HTML page - github link for the sample : https://github.com/nanddeepn/code-samples/tree/master/MSTeams/task-modules-tab/YouTubePlayer_HTML_Page
There is a typescript file (https://github.com/nanddeepn/code-samples/blob/master/MSTeams/task-modules-tab/YouTubePlayer_HTML_Page/src/app/scripts/youTubePlayer1Tab/VideoSelectorTaskModule.tsx) and they are able to render the content inside a html page (https://github.com/nanddeepn/code-samples/blob/master/MSTeams/task-modules-tab/YouTubePlayer_HTML_Page/src/app/web/youTubePlayer1Tab/selector.html) I couldn't understand how they are able to render the typescript in a HTML page.
My ultimate goal is to be able to render a typescript with FluentUI controls inside a HTML page so I could add to a Task Module with all the controls I need. Any help is much appreciated.