Reputation: 393
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
Upvotes: 0
Views: 442
Reputation: 393
After hours of trying, finally the following command solved my issue.
npm install @types/[email protected] --save
Upvotes: 1