Skip to content

Instantly share code, notes, and snippets.

@MarkTiedemann
Last active December 15, 2020 08:55
Show Gist options
  • Select an option

  • Save MarkTiedemann/4ac5837195f52d24bb1decfac60dcb2d to your computer and use it in GitHub Desktop.

Select an option

Save MarkTiedemann/4ac5837195f52d24bb1decfac60dcb2d to your computer and use it in GitHub Desktop.
{
"imports": {
"lodash": "./node_modules/lodash-es/lodash.js"
}
}
import * as _ from "lodash";
console.log(_.range(1, 5));
@MarkTiedemann
Copy link
Author

C:\> deno run --unstable --import-map=import-map.json main.ts
[ 1, 2, 3, 4 ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment