So I created a js project to test out the typescri...
# javascript
s
So I created a js project to test out the typescript definitions generated using 1.4-M2. It sounds like from the blog post that
produceExecutable()
is required to get the
.d.ts
files to generate, but I can’t find how to call
produceExecutable()
from the multiplatform plugin. Am I missing it? How would I get this to work?
d
I was able to call
produceExecutable()
just fine in a multiplatform project a couple of weeks ago, but I was using 1.4-M1. I called it in the
js
block, I think
s
it was changed to
binaries.executable()
for M2 it turns out
👍 3