storybook/docs/api/main-config/main-config-babel.mdx
Charles de Dreuille 2d32ceaba6 API Main config
2024-06-17 18:56:10 +01:00

37 lines
1.3 KiB
Plaintext

---
title: 'babel'
sidebar:
order: 5
title: babel
---
Parent: [main.js|ts configuration](./main-config.mdx)
Type: `(config: Babel.Config, options: Options) => Babel.Config | Promise<Babel.Config>`
Customize Storybook's [Babel](https://babeljs.io/) setup.
<Callout variant="info" icon="💡">
[Addon authors](../../addons/writing-presets.mdx#babel) should use [`babelDefault`](./main-config-babel-default.mdx) instead, which is applied to the preview config before any user presets have been applied.
</Callout>
{/* prettier-ignore-start */}
<CodeSnippets path="main-config-babel.md" />
{/* prettier-ignore-end */}
## `Babel.Config`
The options provided by [Babel](https://babeljs.io/docs/options) are only applicable if you've enabled the [`@storybook/addon-webpack5-compiler-babel`](https://storybook.js.org/addons/@storybook/addon-webpack5-compiler-babel) addon.
<Callout variant="info">
If you have an existing Babel configuration file (e.g., `.babelrc`), it will be automatically detected and used by Storybook without any additional configuration required.
</Callout>
## `Options`
Type: `{ configType?: 'DEVELOPMENT' | 'PRODUCTION' }`
There are other options that are difficult to document here. Please introspect the type definition for more information.