So it looks like with newer electrons you can just start it off in typescript right away with
electron main.ts
- Though you can't do
electron ./mainand you'd still need to require('./file.ts'). - And I noticed that when I build it the .exe still complains that it needs a main.js file.
How can I solve these two issues without going with a compiler (just load typescript directly)?