I’m using the gulp-jshint which makes me add ‘use strict’ directive in every file and therefore I can’t use my global object emApp, defined in my app.js file like this:
var emApp = angular.module('emApp');
However, I see that jshint says nothing about angular object. I’d like to know why is that and how to do the same thing with my own emApp object.