module.exports = (rollupConfig) => { rollupConfig.input = { index: 'packages/runtime-tools/src/index.ts', runtime: 'packages/runtime-tools/src/runtime.ts', 'webpack-bundler-runtime': 'packages/runtime-tools/src/webpack-bundler-runtime.ts', 'runtime-core': 'packages/runtime-tools/src/runtime-core.ts', }; // Check if output is an array and add hoistTransitiveImports: false if (Array.isArray(rollupConfig.output)) { rollupConfig.output = rollupConfig.output.map((c) => ({ ...c, hoistTransitiveImports: false, entryFileNames: c.format === 'esm' ? c.entryFileNames.replace('.js', '.mjs') : c.entryFileNames, chunkFileNames: c.format === 'esm' ? c.chunkFileNames.replace('.js', '.mjs') : c.chunkFileNames, })); } else { rollupConfig.output = { ...rollupConfig.output, hoistTransitiveImports: false, entryFileNames: rollupConfig.output.format === 'esm' ? rollupConfig.output.entryFileNames.replace('.js', '.mjs') : rollupConfig.output.entryFileNames, chunkFileNames: rollupConfig.output.format === 'esm' ? rollupConfig.output.chunkFileNames.replace('.js', '.mjs') : rollupConfig.output.chunkFileNames, }; } return rollupConfig; };