angularjs - Angular using jqLite instead of full jQuery -


i'm trying setup boilerplate code found on github. should pretty generic, using browserify/import model, how angular use full jquery? i've tried doing this:

import $ 'jquery'; window.$ = $;  import jquery 'jquery'; window.jquery = jquery;  import 'jquery-ui'; import angular 'angular'; import moment 'moment';  // import requires ...  window.app = angular.module('app', requires);  angular.module('app').constant('appsettings', constants);  angular.module('app').config(onconfig); ... other stuff 

but still ends jqlite.


Comments