Okay so new question, im doing some interop I am g...
# javascript
j
Okay so new question, im doing some interop I am getting many errors like this
Can't access class 'EventEmitter' marked with @JsModule annotation from non-modular project
b
You compile w/o setup
moduleKind
(it’s plain by default) so you can’t access to external declarations with
JsModule
and w/o
JsNonModule
it means: a) these declarations are not available through JS module systems b) the declarations are wrong 🙂
c) bug in ts2kt (less possible, in this case)