-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
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
Recommended way to limit total size of an ESM library #265
Comments
One easy workaround I can think of is to create a
then in
but I'm wondering if there's a more straightforward way. |
We had some discussion here #263 I small PR with extra syntax for |
Could you explain how code coverage is related?
I do! What syntax do you want? I instinctively went for |
Oops. Wrong link. Here is right one #261 |
Hello! In my library I have a root ESM index file exporting everything, so I would like to use that to limit the total size of my library. Simply specifying the file with
path
doesn't appear to be enough, as the size ends up being zero or next to zero, so is there a way to import all exports somehow, for exampleimport: "*"
? What is generally the recommended way to limit total size in an ESM library?The text was updated successfully, but these errors were encountered: