I am using Angular 1.5 with TypeScript and have all the necessary configurations in my tsconfig.json file. However, when I run tslint, I encounter numerous errors in the project, one of which is:
Cannot find namespace angular
My tsconfig.json file looks like this:
{
"compilerOptions": {
"target": "es5"
"module": "amd",
"noImplicitAny": true,
"removeComments": true,
"preserveConstEnums": true,
"sourceMap": true
},
"exclude": [
"node_modules",
]
In the typings folder, the tsd.d.ts file contains references to various Angular and Moment modules. Does anyone know how to resolve this issue?