George Kalpakas aece3669e5 build(docs-infra): switch docs examples to Ivy ()
The docs examples are switched to Ivy. On CI, the tests are run with
both Ivy and ViewEngine.

Partially addresses:
[FW-1609](https://angular-team.atlassian.net/browse/FW-1609)

PR Close 
2020-04-06 15:31:07 -07:00

23 lines
553 B
JavaScript

// #docregion
import nodeResolve from 'rollup-plugin-node-resolve'
import commonjs from 'rollup-plugin-commonjs';
import uglify from 'rollup-plugin-uglify'
//paths are relative to the execution path
export default {
input: 'app/main.js',
output: {
file: 'aot/dist/build.js', // output a single application bundle
format: 'iife',
sourcemap: true,
sourcemapFile: 'aot/dist/build.js.map'
},
plugins: [
nodeResolve({jsnext: true, module: true}),
commonjs({
include: ['node_modules/rxjs/**']
}),
uglify()
]
}