i’ve completely forgotten and i can’t remember how...
# getting-started
h
i’ve completely forgotten and i can’t remember how/find anywhere onlein, but how can i add a compiler argument via gradle dsl? i can’t remember for the life of me
s
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all { kotlinOptions { freeCompilerArgs += [ '-Xexperimental=your.Annotation', ] } }
h
thank you!