var app = angular.module('plunker', []);
<!DOCTYPE html>
<html ng-app="plunker">
<head>
<meta charset="utf-8" />
<title>AngularJS Plunker</title>
<script>document.write('<base href="' + document.location + '" />');</script>
<link rel="stylesheet" href="style.css" />
<script data-require="angular.js@1.6.x" src="https://code.angularjs.org/1.6.5/angular.js" data-semver="1.6.5"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="app.js"></script>
<script src="controllers.js"></script>
<script src="directives.js"></script>
<script src="services.js"></script>
</head>
<body ng-controller="MainCtrl as ctrl">
</body>
</html>
{
"name": "plunker-project",
"dependencies": {
"jquery": "^3.3.1"
}
}
app.controller('MainCtrl', function($scope, $timeout) {
});