You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
317 B
19 lines
317 B
const babel = require('rollup-plugin-babel')
|
|
module.exports = {
|
|
input: 'main.js',
|
|
output: [{
|
|
file: './dist/dist.js',
|
|
format: 'cjs'
|
|
},
|
|
{
|
|
file: './dist/dist2.js',
|
|
format: 'iife',
|
|
name: 'MyBundle'
|
|
}
|
|
],
|
|
plugins: [
|
|
babel({
|
|
exclude: 'node_modules/**'
|
|
})
|
|
]
|
|
}
|