We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Many modules have only one export but it is not set as default:
export { Kernel };
So we need to repeat { and } in many places:
{
}
import { Kernel } from "./kernel/kernel";
If we used default exports:
export default Kernel ;
We would be able to import as follows:
import Kernel from "./kernel/kernel";
The entire code base is full of this problem and needs to be refactored.
The text was updated successfully, but these errors were encountered:
implemented #90
08909b3
Done 08909b3
Sorry, something went wrong.
No branches or pull requests
Many modules have only one export but it is not set as default:
So we need to repeat
{
and}
in many places:If we used default exports:
We would be able to import as follows:
The entire code base is full of this problem and needs to be refactored.
The text was updated successfully, but these errors were encountered: