How can I obtain a `KotlinJsIrCompilation` instanc...
# gradle
c
How can I obtain a
KotlinJsIrCompilation
instance in a
kotlin("multiplatform")
project with
js()
enabled?
s
Copy code
kotlin {
  js {
    compilations.configureEach { … }
  }
}
Does that get you what you need? ☝️
c
It does, thanks!
I got confused because it's available via
KotlinMultiplatformExtension
but not
KotlinProjectExtension
🤦‍♂️