I'm trying to import lodash in angular application level through main.ts like below.
//main.ts
import * as lodash from 'lodash';
declare global {
const _: typeof lodash;
}
After adding above code, I can able to reference to the lodash and compiled successfully but in run time I was facing issue like below.
ERROR ReferenceError: _ is not defined
am I missing anything here? please help, thanks!
