Is `binaries.executable` only needed for the entry...
# javascript
z
Is
binaries.executable
only needed for the entrypoint JS modules? For instance, if I make a small browser library that exposes some React component, does it need to have
binaries.executable
, or just the module that imports the component?
1
h
Only the entrypoint
👍 1
a
in adititon, you will need
binaries.library
instead of
binaries.executable
2
h
Library is not needed for a plain Kotlin/JS library, only when consuming it from JS
👍 1
a
that is correct @hfhbd