I have this in my root `build.gradle.kts` ``` subp...
# intellij
e
I have this in my root
build.gradle.kts
Copy code
subprojects {
  // ...

  project.afterEvaluate {
    tasks.withType<KotlinCompile> {
      kotlinOptions {
        freeCompilerArgs = listOf(
          "-XXLanguage:+InlineClasses",
          "-Xuse-experimental=kotlin.Experimental",
          "-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi"
        )
      }
    }
  }
}