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