Akram Bensalem
03/03/2024, 3:20 PMimport org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl
plugins {
    alias(libs.plugins.kotlinMultiplatform)
    alias(libs.plugins.jetbrainsCompose)
}
kotlin {
    jvm {
        compilations.all {
            kotlinOptions.jvmTarget = "17"
        }
    }
    @OptIn(ExperimentalWasmDsl::class)
    wasmJs {
        moduleName = "designsystem"
        browser {}
        binaries.library()
    }
    
    sourceSets {
        commonMain.dependencies {
            implementation(compose.runtime)
            implementation(compose.foundation)
            implementation(compose.material3)
            implementation(compose.ui)
            implementation(compose.materialIconsExtended)
            implementation(compose.components.resources)
        }
    }
}Akram Bensalem
03/03/2024, 3:28 PMyarn.lock was changed. Run the* Try:task to actualize yarn.lock filekotlinUpgradeYarnLock
Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.
Get more help at https://help.gradle.org.BUILD FAILED in 22s Waiting for changes to input files... (ctrl-d to exit)
Anmol Verma
03/03/2024, 3:30 PMAkram Bensalem
03/03/2024, 3:31 PMAnmol Verma
03/03/2024, 3:31 PMAnmol Verma
03/03/2024, 3:31 PMAkram Bensalem
03/03/2024, 3:34 PM