can i somehow control where the output js will be ...
# javascript
a
can i somehow control where the output js will be placed, other than build/dist/js?
1
Found a way:
Copy code
js {
        nodejs {
            this.distribution {
                this.outputDirectory = file("../dist/kotlin")
            }
        }
        binaries.library()
}