Typing ECMAScript Modules from URLs
import _ from "https://esm.sh/[email protected]"
// ^- Error 2307
const result = _.flattenDeep([1, [2, [3, [4]], 5]]);
console.log(result);
import _ from "https://esm.sh/[email protected]"
// ^- Error 2307
const result = _.flattenDeep([1, [2, [3, [4]], 5]]);
console.log(result);