mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
b43f8bc7d3
PR Close #22573
12 lines
199 B
JavaScript
12 lines
199 B
JavaScript
import nodeResolve from 'rollup-plugin-node-resolve';
|
|
|
|
export default {
|
|
entry: 'dist/src/main.js',
|
|
sourceMap: true,
|
|
treeshake: true,
|
|
moduleName: 'main',
|
|
plugins: [
|
|
nodeResolve()
|
|
]
|
|
};
|