I seem to have found this! In my ScriptCompilation...
# scripting
o
I seem to have found this! In my ScriptCompilationConfiguration, I added one line
Copy code
object TralaScriptConfiguration : ScriptCompilationConfiguration(
    {
        defaultImports(tralaDefaultImports)

        jvm {
            jvmTarget("11")    
            compilerOptions("-Xcontext-receivers")
               
            updateClasspath(...)
        }
    }
)
This seems to do the trick... am I right? I was not immediately on this track as I was looking for a
freeCompilerArgs
function...