visionforge/demo/js-playground/build.gradle.kts

35 lines
764 B
Plaintext
Raw Normal View History

2021-06-08 18:45:03 +03:00
plugins {
2023-09-16 14:05:19 +03:00
id("space.kscience.gradle.mpp")
alias(spclibs.plugins.compose)
2021-06-08 18:45:03 +03:00
}
2023-09-16 14:05:19 +03:00
kscience {
2021-06-08 18:45:03 +03:00
useCoroutines()
}
2023-09-16 14:05:19 +03:00
kotlin {
2023-06-03 17:55:27 +03:00
explicitApi = null
2023-09-16 14:05:19 +03:00
js {
2021-06-08 18:45:03 +03:00
browser {
2023-05-29 21:38:30 +03:00
binaries.executable()
commonWebpackConfig{
cssSupport{
enabled = true
}
scssSupport{
enabled = true
}
sourceMaps = true
}
2021-06-08 18:45:03 +03:00
}
}
}
2023-09-16 14:05:19 +03:00
kscience {
dependencies {
implementation(projects.visionforge.visionforgeGdml)
implementation(projects.visionforge.visionforgePlotly)
implementation(projects.visionforge.visionforgeMarkdown)
implementation(projects.visionforge.visionforgeThreejs)
}
2021-06-08 18:45:03 +03:00
}