I have a type script file and want to include angular.
I have the following throwing errors when compiling the typescript as angular is not included as a referenced file or anything:
app.ts
var app = angular.module('app', []);
index.html
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
<script src="Scripts/angular.min.js"></script>
<link rel="stylesheet" href="app.css" type="text/css" />
</body>
</html>
Obviously it does not matter that my index.html file correctly states dependencies in order as the compiler has no idea where angular comes from.
How do i include the external files?