How to use lodash node module in a TypeScript file?
I have not been able to get this to work.
I have done
npm install lodash --save
in my .ts file, I use:
import _ from "lodash"; or
import * as _ from "lodash";
...with no success. Any ideas to what I am missing?