export default [{
input: ['dist/esm/index.js'],
output: [
{
file: 'dist/plugin.js',
format: 'iife',
name: 'capacitorPlugin',
globals: {
'@capacitor/core': 'capacitorExports',
},
sourcemap: true,
inlineDynamicImports: true,
},
],
external: ['@capacitor/core'],
},
{
input: ['dist/esm/lib/index.js'],
output: [
{
file: 'dist/api.js',
},
],
external: ['@capacitor/core'],
}];