add support for esbuild options
See original GitHub issuemaybe add support for passing esbuild options for ‘install’ functions? like this:
const { install } = require('esbuild-runner');
install({
type: 'transform',
debug: false,
esbuild: {
target: 'esnext',
plugins: [...]
}
});
Issue Analytics
- State:
- Created 3 years ago
- Reactions:4
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Getting Started - ESBuild
First, download and install the esbuild command locally. ... You can read more about the configuration options for the build API in the...
Read more >Getting started with esbuild - LogRocket Blog
Esbuild is not a complete solution for bundling. It has default supports for React, CSS, and images, but it doesn't support SASS. If...
Read more >Features | Vite
Native ES imports do not support bare module imports like the following: ... custom jsxFactory and jsxFragment can be configured using the esbuild...
Read more >esbuild: An extremely fast JavaScript bundler and minifier - Gitee
Install · Local install (recommended). This installs the esbuild command locally in your project's package.json file: npm install --save-dev esbuild. Invoke it ...
Read more >Custom esbuild for Rails - BootrAils
Create esbuild.config.js ... As you may have noticed, the "plugins" property allows you to add any esbuild plugin available in the npm ecosystem....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’ll see if I can add both the extra options to the API and the config file
@folke
error: Cannot use plugins in synchronous API calls