A separate kotlinjs/gradle question: is it possibl...
# javascript
b
A separate kotlinjs/gradle question: is it possible to opt in to experimental coroutines api? I tried adding
experimental.coroutines = Coroutines.ENABLE
to the
kotlin
block in
build.gradle.kts
, but I'm still getting the warning in files
t
Use
languageSettings
to avoid warnings in IDEA For example like here
b
That did it, thanks!