w: Accessed 'source set jsMain', but js target used a custom name 'wasmJs' (expected 'js'):
Replace:
kotlin {
js("wasmJs") /* <- custom name used */
}
With:
kotlin {
js()
}
youtrack 1
✅ 1
a
Anton Mefodichev
08/06/2024, 2:43 PM
Cc @bashor, @tapchicoma, @Ilya Goncharov [JB]
i
Ilya Goncharov [JB]
08/06/2024, 2:45 PM
I think it is an issue KT-70077
It will be fixed in following release
c
Carter
08/06/2024, 2:47 PM
Ah, thanks. Yes that looks like the same issue. I’ll try once RC2 is available.