Is there a way to exclude one of the MPP targets f...
# multiplatform
b
Is there a way to exclude one of the MPP targets from common module? i.e. JS & WASM targets depend on common, but not JVM
g
You could create something above common called jsAndWasm and rely on this one for the first two.
b
In that case is there a way do disable automatic common module creation?
g
Hum, I don’t know, but you could leave it empty anyway. And create jvmCommon, jsWasmCommon, js, wasm, and jvm, for example
b
Seems this is the only way...