Change Kotlin Javascript output directory

Viewed 408

I have just started using Kotlin to produce Javascript, but cannot find a way to change the Javascript output directory.

This is specifically for a nodejs target, and using Gradle with Kotlin script.

There is an example given in the Kotlin docs for a browser target:

kotlin.target.browser {
    distribution {
        directory = File("$projectDir/output/")
    }
}

but there does not seem to be an equivalent for kotlin.target.nodejs

2 Answers
Related