Browse Source

Disable decoys generation for k/js targets

gradle/disable_decoys_generation
Oleksandr Karpovich 1 year ago committed by GitHub
parent
commit
c073263fca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposeCompilerKotlinSupportPlugin.kt

2
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposeCompilerKotlinSupportPlugin.kt

@ -92,7 +92,7 @@ class ComposeCompilerKotlinSupportPlugin : KotlinCompilerPluginSupportPlugin {
}
private val platformPluginOptions = mapOf(
KotlinPlatformType.js to options("generateDecoys" to "true")
KotlinPlatformType.js to options("generateDecoys" to "false")
)
private fun options(vararg options: Pair<String, String>): List<SubpluginOption> =

Loading…
Cancel
Save