Currently, I have two .kt files in a Kotlin/JS project I'm working on. These two .kt files compile to one single .js file (the one in "out/production/myprojectfolder/myproject.js" which is the default directory).
Each of the .kt files represent two separate html pages. I want each of the html page to have its own single .js file.
My question is that, is there a way the two .kt files compile to two separate .js files?