36 lines
811 B
Plaintext
36 lines
811 B
Plaintext
plugins {
|
|
id("space.kscience.gradle.mpp")
|
|
alias(spclibs.plugins.compose.compiler)
|
|
alias(spclibs.plugins.compose.jb)
|
|
}
|
|
|
|
kscience {
|
|
useCoroutines()
|
|
}
|
|
|
|
kotlin {
|
|
explicitApi = null
|
|
js {
|
|
browser {
|
|
binaries.executable()
|
|
commonWebpackConfig{
|
|
cssSupport{
|
|
enabled = true
|
|
}
|
|
scssSupport{
|
|
enabled = true
|
|
}
|
|
sourceMaps = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
kscience {
|
|
dependencies {
|
|
implementation(projects.visionforge.visionforgeGdml)
|
|
implementation(projects.visionforge.visionforgePlotly)
|
|
implementation(projects.visionforge.visionforgeMarkdown)
|
|
implementation(projects.visionforge.visionforgeThreejs)
|
|
}
|
|
} |