Is there a way to safely apply annotations like `@...
# javascript
j
Is there a way to safely apply annotations like
@JsName
and
@JsModule
to dukat generated externals?
would be a bummer if I had to re-generate them though 🤔
s
I don't think you would need
JsName
on generated externals because Kotlin does not mangle external declarations. But yeah if you're relying on generated externals and if you don't change default location then changes would get override. Prefer approach is to move generated externals inside your src folder and commit them
j
Ah gotcha, 👍 thanks