mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
21 lines
477 B
JavaScript
21 lines
477 B
JavaScript
import resolve from 'rollup-plugin-node-resolve';
|
|
|
|
export default {
|
|
input: 'ShadowEditor.ScriptEditor/src/index.js',
|
|
output: {
|
|
indent: '\t',
|
|
format: 'umd',
|
|
name: 'Shadow',
|
|
file: 'ShadowEditor.ScriptEditor/dist/ShadowEditor.ScriptEditor.js'
|
|
},
|
|
treeshake: true,
|
|
external: [],
|
|
plugins: [
|
|
resolve({
|
|
customResolveOptions: {
|
|
moduleDirectory: 'node_modules'
|
|
}
|
|
})
|
|
]
|
|
};
|