Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- plugins {
- kotlin("multiplatform") version "1.4-SNAPSHOT"
- }
- group = "me.take"
- version = "1.0-SNAPSHOT"
- repositories {
- mavenLocal()
- }
- kotlin {
- js {
- useCommonJs()
- binaries.executable()
- browser()
- }
- sourceSets {
- val commonMain by getting {
- dependencies {
- implementation(kotlin("stdlib-common"))
- }
- }
- val jsMain by getting {
- dependencies {
- implementation(kotlin("stdlib-js"))
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment