mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:31:27 +08:00
15 lines
326 B
Plaintext
15 lines
326 B
Plaintext
```ts
|
|
// app/mithril/src/server/framework-preset-mithril.ts
|
|
|
|
import { TransformOptions } from '@babel/core';
|
|
|
|
export function babelDefault(config: TransformOptions) {
|
|
return {
|
|
...config,
|
|
plugins: [
|
|
...config.plugins,
|
|
[require.resolve('@babel/plugin-transform-react-jsx'), {}, 'preset'],
|
|
],
|
|
};
|
|
}
|
|
``` |