<Creating JS library with kotlin multi platform an...
# stackoverflow
u
Creating JS library with kotlin multi platform and use it on angular 2 via npm I created and simple kotlin multi platform application and i want to use it on angular project via publishing on npm. Here is my build.gradle.kts file plugins { kotlin("multiplatform") kotlin("native.cocoapods") id("com.android.library") } version = "1.0" kotlin { android() iosX64() iosArm64() iosSimulatorArm64() js { browser { webpackTask { output.libraryTarget = "this" } binaries.executable()...