mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:41:17 +08:00
add config to esbuild to ensure react runtime for addons is always as expected by the manager
This commit is contained in:
parent
6aaa3cba7d
commit
cb0f7e5657
@ -57,6 +57,18 @@ export const getConfig: ManagerBuilder['getConfig'] = async (options) => {
|
||||
minify: false,
|
||||
sourcemap: true,
|
||||
|
||||
jsxFactory: 'React.createElement',
|
||||
jsxFragment: 'React.Fragment',
|
||||
jsx: 'transform',
|
||||
jsxImportSource: 'react',
|
||||
|
||||
tsconfigRaw: JSON.stringify({
|
||||
compilerOptions: {
|
||||
jsx: 'react',
|
||||
jsxImportSource: 'react',
|
||||
},
|
||||
}),
|
||||
|
||||
legalComments: 'external',
|
||||
plugins: [
|
||||
aliasPlugin({
|
||||
|
Loading…
x
Reference in New Issue
Block a user