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 #36143
		
			
				
	
	
		
			23 lines
		
	
	
		
			557 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			557 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-aot.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()
 | 
						|
  ]
 | 
						|
}
 |