rework templates

This commit is contained in:
2025-04-30 14:39:12 +06:00
parent 5fe23903a4
commit 373906e156
15 changed files with 196 additions and 183 deletions

View File

@@ -0,0 +1,30 @@
kotlin {
js (IR) {
browser {
testTask {
useMocha {
timeout = "240000"
}
}
}
nodejs {
testTask {
useMocha {
timeout = "240000"
}
}
}
}
sourceSets {
jsMain {
dependencies {
}
}
jsTest {
dependencies {
implementation kotlin('test-js')
}
}
}
}