Closed Thundercraft5 closed 2 years ago
I've noticed that this extension mistakenly removes the default export of event when it is used when it is paired with a NS import.
Example:
import test, * as test$0 from "./test2"; test.test(); // `test` is used
Becomes
import * as test$0 from "./test2"; test.test();
EDIT: Cause of this issue is actually another extension.
I've noticed that this extension mistakenly removes the default export of event when it is used when it is paired with a NS import.
Example:
Becomes
EDIT: Cause of this issue is actually another extension.