RecipesChapter 1: Project Setup

Typing ECMAScript Modules from URLs

Recipe 1.8 from The TypeScript Cookbook

import _ from "https://esm.sh/[email protected]"
//             ^- Error 2307

const result = _.flattenDeep([1, [2, [3, [4]], 5]]);

console.log(result);
Open in TypeScript Playground →