Webpack with angular 1.x and ES5 Webpack with angular 1.x and ES5 angularjs angularjs

Webpack with angular 1.x and ES5


I typically have a feature.module.js file which has my module definition and requires all of the directives / services contained within the module. Also has the external dependancies.

/* module.js */angular.module('my.module',['dependancy1', 'dependancy2']);//External librariesrequire('./dependancy1.module.js');require('./dependancy2.module.js');//Internal componentsrequire('./thing.directive');require('./thing.service';