23 lines
377 B
JavaScript
23 lines
377 B
JavaScript
|
// const uglify = require('@bytedo/rollup-plugin-uglify')
|
||
|
|
||
|
module.exports = [
|
||
|
{
|
||
|
input: 'src/anot.js',
|
||
|
output: {
|
||
|
file: 'dist/anot.js',
|
||
|
format: 'es',
|
||
|
sourcemap: false
|
||
|
},
|
||
|
plugins: []
|
||
|
},
|
||
|
{
|
||
|
input: 'src/anot.touch.js',
|
||
|
output: {
|
||
|
file: 'dist/anot.touch.js',
|
||
|
format: 'es',
|
||
|
sourcemap: false
|
||
|
},
|
||
|
plugins: []
|
||
|
}
|
||
|
]
|