Externalize all packages except the ones passed to this plugin
npm install esbuild-plugin-noexternalWill mark all npm packages as "external", except the ones passed to this plugin. Kinda like Vite's noExternal option.
```
npm i -D esbuild-plugin-noexternal
`js
import esbuild from 'esbuild';
import externalizeAllPackagesExcept from 'esbuild-plugin-noexternal';
esbuild.build({
// ...
bundle: true,
plugins: [externalizeAllPackagesExcept(['nanoid', 'slash' /.../])],
});
``