I have an Angular App and it works fine, but my debugger is showing me 'Cannot find name angular'.
var table = angular.module('myTable', ['angularUtils.directives.dirPagination']);
I included the link for angular in my html file:
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
I tried also including a link for bower_components also:
<script src="bower_components/angular/angular.min.js"></script>
There is a answer about this problem at Getting Error - Cannot find name 'angular' but I am not able to use it.