add config to esbuild to ensure react runtime for addons is always as expected by the manager

This commit is contained in:
Norbert de Langen 2022-09-21 10:59:06 -04:00
parent 6aaa3cba7d
commit cb0f7e5657
No known key found for this signature in database
GPG Key ID: FD0E78AF9A837762

View File

@ -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({