13 lines
269 B
Groovy
13 lines
269 B
Groovy
apply plugin: 'kotlin-platform-js'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlinVersion"
|
|
expectedBy project(":")
|
|
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-js:$kotlinVersion"
|
|
}
|