So, if anyone is interested, I'm trying to figure ...
# kontributors
j
So, if anyone is interested, I'm trying to figure out what it would take to add incremental compilation support to Kotlin JS (and eventually Kotlin Lua, which I'm trying to start). From other conversations, it sounds like currently incremental compilation for Kotlin JVM relies on the java binary class files to look up metadata. I'm curious if there's any existing plans on how to add support for incremental compilation to Kotlin JS. This is probably a bad idea, but I was wondering if it would make sense to compile for both the JVM and JS/Lua, so that later the java class files could be used for incremental compilation of the AST tree to be used by Kotlin JS. This would essentially be a trade off of compilation time overhead to generate the java class files in exchange for some support of incremental compilation