esbuild icon indicating copy to clipboard operation
esbuild copied to clipboard

An extremely fast bundler for the web

Results 402 esbuild issues
Sort by recently updated
recently updated
newest added

When I use the spliting attribute to pack, there are a lot of chunks, most of which are very small in size. I would like to ask how to control...

The TypeScript team seems set on making a decision I think is going to lead to a lot of pain for beginners: they are categorically against rewrite module specifiers. This...

There's a pattern that's being used over in Preact that would allow class components to be tree-shaken easily, including the relevant rendering code, which works more or less like this....

I would love for esbuild to provide metadata for plugin authors about import assertions on files. Currently the `onResolve` arguments for imports take the following shape: ```typescript export type ImportKind...

First, great work on the project! I looked for this on the plugin documentation online but couldn't find an answer. I'm trying to get CSS imported into JS files to...

I want esbuild to demonstrate that it's possible for a normal web development workflow to have high-performance tools. I consider bundling CSS modules a part of my initial MVP feature...

As a package author, I'm trying to juggle a lot of requirements and keep it compatible with different tools. This is a mad man's world and, for now, we've decided...

I am trying to get css import assertions to work. I found a comment that says to use ```--bundle --external:*.css --format=esm --target=esnext```, but that has the following issue: the build...

This PR enables esbuild to transparently traverse into `.zip` files as if they were directories. This is relevant to Yarn which stores packages in `.zip` files and then monkey-patches the...

How can we use dependencies that still use require while shipping esm? Is that possible? Minimal reproduction: https://github.com/enricoschaaf/esbuild-issue Just run node index.mjs. This was generated from running build which executes...