Ilya Kalibrov [JB]
10/25/2021, 8:30 AMandylamax
10/25/2021, 9:01 AMjs(IR) {
browser { }
compilations.all {
kotlinOptions.freeCompilerArgs += listOf("-Xir-per-module")
}
binaries.executable() // binaries.library()
}
In my build.gradle.kts
but I can't seem to find the seperate module files.
This is an umbrella
module, depending on approximately 12 gradle subprojects.
I checked my build/compileSync/main/developmentExecutable/kotlin
I just found a .d.ts
, .js
and a .map
. Where are the multiple modules being generated?Big Chungus
10/25/2021, 9:04 AMBig Chungus
10/25/2021, 9:04 AMtasks.withType<KotlinCompile>{kotlinOptions.freeCompilerArgs += listOf("-Xir-per-module")}
Big Chungus
10/25/2021, 9:05 AMandylamax
10/25/2021, 10:33 AM