Hello, I do a multiplateform project using the gradle multiplatform plugin.
How can I configure the equivalent of the:
compileKotlin2Js {
kotlinOptions.outputFile = “${projectDir}/web/output.js”
kotlinOptions.moduleKind = “amd”
kotlinOptions.sourceMap = true
}
?
Thank-you !