I have an Angular application and it works fine, but my debugger shows me "Can't find the name angular."
var table = angular.module('myTable', ['angularUtils.directives.dirPagination']);
I have 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 also tried including the link for bower_components:
<script src="bower_components/angular/angular.min.js"></script>
The answer to this problem can be found in Receiving an error - cannot find the name angular but I can not use it.
javascript angularjs visual-studio-code
John onslaught
source share