I was having some problems with an angular project so i reinstalled nodejs and angular cli however now when i try to run ng serve i get this error: enter image description here now ive done the typical google searching for this problem and it led me to stackoverflow with making sure the nodejs is in the envir…
Tag: angular-cli
ERROR in node_modules/@angular/material/table/cell.d.ts -Typescript version problem angular
Im using angular in my project so I faced this issue I tried to downgrade my typscript to 3.9.7 but still not working here is my package.json dpendencies. can someone give me an idea to solve this issue Answer I removed material folder and I install npm install @angular/material@^10.1.3 and downgrade @angular…
Cannot find module ‘@angular-devkit/schematics/tasks’
when I try to add @angular/material to my project I get this error. Using Angular Cli: 7.2.1, Node 11.6.0 Cannot find module ‘@angular-devkit/schematics/tasks’ Error: Cannot find module ‘@angular-devkit/schematics/tasks’ at Function.Module._resolveFilename (internal/modules /cjs/…
Upgrading to angular-6.x gives “Uncaught ReferenceError: global is not defined”
I upgraded my project from angular-5.x to angular-6.x and it started giving the following error and even creation of dummy global variable does not work as given here Angular 6 Auth0 – global not defined The error is as follows: after resolving this I get following error: And continues on and on. Answer…
How to get rid of Function calls are not supported in decorators in Angular aot compiling?
I am testing a Highcharts Angular2x Wrapper. At first, I had no problem using Angular CLI (1.6.1) “ng serve” and profiling performance with Chrome. Then, i tried to use ahead-of-time compiling to see how that affects the performance. So, using: I get the following error: Now, i know that aot gener…