ShadowEditor/test/rollup.config.js
2018-12-27 19:04:00 +08:00

13 lines
232 B
JavaScript

export default {
input: 'test/src/index.js',
output: {
indent: '\t',
format: 'umd',
name: 'Shadow',
file: 'test/dist/tests.js'
},
treeshake: true,
external: [],
plugins: []
};