mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
17 lines
354 B
JavaScript
17 lines
354 B
JavaScript
import nodeResolve from 'rollup-plugin-node-resolve';
|
|
import commonjs from 'rollup-plugin-commonjs';
|
|
|
|
export default {
|
|
entry: 'dist/src/main.js',
|
|
sourceMap: true,
|
|
treeshake: true,
|
|
moduleName: 'main',
|
|
plugins: [
|
|
commonjs({
|
|
include: 'node_modules/**'
|
|
}),
|
|
nodeResolve({
|
|
jsnext: true, main: true, module: true
|
|
})
|
|
]
|
|
};
|