ShadowEditor/ShadowEditor.SVG/rollup.config.js
2018-11-04 19:17:51 +08:00

21 lines
450 B
JavaScript

import resolve from 'rollup-plugin-node-resolve';
export default {
input: 'ShadowEditor.SVG/src/index.js',
output: {
indent: '\t',
format: 'umd',
name: 'Shadow',
file: 'ShadowEditor.SVG/dist/ShadowEditor.SVG.js'
},
treeshake: true,
external: [],
plugins: [
resolve({
customResolveOptions: {
moduleDirectory: 'node_modules'
}
})
]
};