After building the jsinterop for WASM available on...
# kotlin-native
b
After building the jsinterop for WASM available on K/N, i see it has a js file attached to it. How can I configure my gradle MPP WASM target to also include some custom files in that same dir when *.klib is being built?
m
Something like this should work:
Copy code
compilations["main"].apply {
            kotlinOptions.freeCompilerArgs = listOf(
                "-include-binary", yourCustomFile
            )
        }
b
That works, thanks