Skip to content

Instantly share code, notes, and snippets.

@jhahspu
Last active March 18, 2025 05:02
Show Gist options
  • Save jhahspu/c40daae79f29743b28e12c8b4ec440fe to your computer and use it in GitHub Desktop.
Save jhahspu/c40daae79f29743b28e12c8b4ec440fe to your computer and use it in GitHub Desktop.
Lodash
$ npm install --save lodash

# This is the new bit here: 
$ npm install --save-dev @types/lodash
import * as _ from 'lodash';

angular.json

"build": {
  "builder": "@angular-devkit/build-angular:browser",
  "options": {
    ...
    "allowedCommonJsDependencies": [
      "lodash"
    ]
  },
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment