Iris_geek
Iris_geek

Reputation: 393

npm lodash build issues in angular

Am trying to build my project and getting many issues related to lodash

I have typescript version 2.0.10 and "@types/lodash": "^4.14.65"

I have tried replacing 4.14.65 to "@types/lodash": "ts2.0" as suggested in one of the Git hub issues. Still facing this issue. Any help?

The following is the screenshot

enter image description here

Upvotes: 0

Views: 442

Answers (1)

Iris_geek
Iris_geek

Reputation: 393

After hours of trying, finally the following command solved my issue.

npm install @types/[email protected] --save

Upvotes: 1

Related Questions