mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
10 lines
219 B
Plaintext
10 lines
219 B
Plaintext
```ts
|
|
import { TransformOptions } from '@babel/core';
|
|
|
|
export function babelDefault(config: TransformOptions) {
|
|
return {
|
|
plugins: [[require.resolve('@babel/plugin-transform-react-jsx'), {}, 'preset']],
|
|
};
|
|
}
|
|
```
|