Is it possible to get around AngularJS's dependency injection and use ECMAScript 2015+ modules instead?
My goal is to never have to call angular.module on controllers, services, and factories. I can do that for those easily, but if I want to access $http and other similar providers, I only know how to get to them via dependency injection. Is there a way to pull them in with an import statement or from the angular instance?