You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import typescript from 'rollup-plugin-typescript2';
export default {
input: './src/OmYumYum.ts',
output: {
file: './dist/OmYumYum.umd.js',
format: 'umd',
name: 'omyumyum',
// Consumers of your bundle will have to use chunk['default'] to access their default export, which may not be what you want. Use `output.exports: 'named'` to disable this warning