Skip to content

Commit eeb4914

Browse files
committed
docs: add more info regarding custom babel config
1 parent b83ce27 commit eeb4914

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docs/pages/build.md

+17
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,23 @@ module.exports = {
230230

231231
This will make sure that the `commonjs` target produces code using CommonJS and the `module` target produces code using ES modules. It is also necessary for the `esm` option to work correctly.
232232

233+
If you don't want to use the preset, then make sure to conditionally enable or disable the CommonJS transform with the following condition:
234+
235+
```js
236+
module.exports = (api) => {
237+
const isCommonJSTransformDisabled = api.caller(
238+
// If `supportsStaticESM` is `true`, output ES modules, otherwise output CommonJS
239+
(caller) => caller && caller.supportsStaticESM
240+
);
241+
242+
return {
243+
// Your config here
244+
};
245+
};
246+
```
247+
248+
If you're using [`@babel/preset-env`](https://babeljs.io/docs/babel-preset-env) with the [`modules`](https://babeljs.io/docs/babel-preset-env#modules) option set to `"auto"` (which is the default), it will be automatically configured to correctly enable the CommonJS transform when needed, so additional configuration is not necessary.
249+
233250
##### `babelrc`
234251

235252
You can set the [`babelrc`](https://babeljs.io/docs/en/options#babelrc) option to `true` to enable using `.babelrc` files. Similar considerations apply as with the `configFile` option.

0 commit comments

Comments
 (0)