plugins { kotlin("js") kotlin("plugin.serialization") } kotlin { js { browser { webpackTask { cssSupport.enabled = true } runTask { devServer = devServer!!.copy( open = false, port = 1623 ) cssSupport.enabled = true } testTask { useKarma { useChromeHeadless() webpackConfig.cssSupport.enabled = true } } } binaries.executable() } } val kotlinLoggingVersion: String by project.extra val ktorVersion: String by project.extra dependencies { implementation(project(":lib")) implementation(project(":webui")) implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion") implementation("io.ktor:ktor-client-core-js:$ktorVersion") implementation("io.ktor:ktor-client-serialization-js:$ktorVersion") implementation("org.jetbrains.kotlinx:kotlinx-serialization-core-js:1.0.0") implementation(npm("golden-layout", "1.5.9")) implementation(npm("@babylonjs/core", "4.2.0-rc.5")) testImplementation(kotlin("test-js")) testImplementation(project(":test-utils")) }