Although I have used javascript/typescript in the past, it was always accompanied with a framework like Angular. I'm going for a barebones Electron project with webpack+typescript template and I don't have any experience with Electron or webpack tooling.
I wanted to create a new window with isolated renderer.ts scripts and css files. I understand that I can create new BrowserWindow objects, load HTML and in theory add JS files within script tags, but the renderer.ts gets added to the default index.html automagically and that seems like a better way of doing it.
How can I create a new window with isolated css/html/ts files (in the commonly accepted way)?