We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3adad9 commit 652a307Copy full SHA for 652a307
kotlin-json-patch/build.gradle.kts
@@ -1,3 +1,5 @@
1
+import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
2
+
3
plugins {
4
alias(libs.plugins.kotlinMultiplatform)
5
alias(libs.plugins.androidLibrary)
@@ -8,20 +10,22 @@ group = "io.github.reidsync"
8
10
version = "1.0.0"
9
11
12
kotlin {
- jvm {
- // …
13
- }
14
- js(IR) {
15
16
17
androidTarget {
18
compilations.all {
19
compilerOptions.configure {
20
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_1_8)
21
}
22
+ @OptIn(ExperimentalWasmDsl::class)
+ wasmJs {
+ browser()
+ nodejs()
23
+ }
24
25
publishLibraryVariants("release", "debug")
26
27
28
+ jvm("desktop")
29
30
listOf(
31
iosX64(),
0 commit comments