i am trying to set up a jsMain & wasmMain project (sort of similar to
compose-imageviewer) and I want to use
sqldelight, which supports a native target, here are my two questions:
A) when I try to include it i'm getting a "no matching variant of app.cash.sqldelight:runtime" error -- it's looking for a wasm variant, yet sqldelight doesn't publish one. How can I just include and use it on jsMain (or jsWasmMain) and import it correctly? My build.gradle.kts has both js(IR){} & wasm{} targets.
B) what's the preferrered way to use Kotlin/JS and Kotlin/Wasm in the same mpp repo? Like how can I easily call into the kotlin/js side from wasm or visa-versa?