aboutsummaryrefslogtreecommitdiff
path: root/console/build.gradle.kts
blob: 11f4915ff7e23d73153431fe71825189611676c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
plugins {
    kotlin("multiplatform") version "1.7.10"
}

repositories {
    mavenCentral()
    mavenLocal()
    maven("https://jitpack.io")
}

kotlin {
    js(IR) {
        browser {
            binaries.executable()
            commonWebpackConfig {
                sourceMaps = true
                cssSupport.enabled = true
            }
        }
    }
    sourceSets.named("jsMain") {
        dependencies {
            implementation("com.github.romangraef:neamoe:36374a0")
        }
    }
}