I want to use Angularjs with TypeScript .
To resolve error TS2095: Could not find symbol 'angular' , I downloaded ts files from here and added links to controllers.ts as follows:
/// <reference path="angular.d.ts" /> /// <reference path="jquery.d.ts" /> var mathML = angular.module('mathML', []);
But I still have a similar error:
angular.d.ts(33,28): error TS2095: Could not find symbol 'JQuery'.
How can I solve this error? Is there a better way to configure the environment to use Angularjs using TypeScript ?
javascript angularjs typescript
ironsand
source share