2022-02-16 17:55:15 +00:00
|
|
|
plugins {
|
|
|
|
id 'org.jetbrains.kotlin.js'
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-js"
|
|
|
|
|
|
|
|
implementation project(":fints4k")
|
|
|
|
|
2023-07-06 11:49:55 +00:00
|
|
|
implementation "org.jetbrains.kotlin-wrappers:kotlin-react:18.2.0-pre.585"
|
|
|
|
implementation "org.jetbrains.kotlin-wrappers:kotlin-react-dom:18.2.0-pre.585"
|
2022-02-16 17:55:15 +00:00
|
|
|
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-js"
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js(IR) {
|
|
|
|
browser {
|
|
|
|
testTask {
|
|
|
|
useKarma {
|
|
|
|
useChromeHeadless()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
binaries.executable()
|
|
|
|
}
|
|
|
|
}
|