plugins { kotlin("multiplatform") } kotlin { jvm { testRuns["test"].executionTask.configure { useJUnitPlatform() } } js(IR) { browser() nodejs() } sourceSets { @Suppress("UNUSED_VARIABLE") val commonMain by getting { dependencies { implementation(libs.openrndr.application) implementation(libs.openrndr.math) } } } }