Julius Hannink
02/08/2021, 1:51 PMYou already registered Kotlin/JS target 'js' with another compiler: legacyAny idea on how to do that properly? I tried clearing gradle / idea / etc. caches but without success so far... :(
Marc Knaup
02/08/2021, 2:31 PMjs(LEGACY)
and js(IR)
targets you use js(BOTH)
Julius Hannink
02/08/2021, 2:49 PMbuild.gradle
is
kotlin{
js{
//...
}
}
Marc Knaup
02/08/2021, 2:53 PMRobert Jaros
02/08/2021, 3:12 PMbuild.gradle
and gradle.properties
?Julius Hannink
02/08/2021, 3:55 PMenableFeaturePreview('GRADLE_METADATA')
in my gradle.properties
for some historic reasons...Now it works 🙂 Thanks!