You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When adding a library via deno task esm:add ..., the CLI should automatically add an import map for any internal node modules imported by ...
{
"imports": {
"lib": "https://esm.sh/v131/*[email protected]",
"lib2": "https://esm.sh/v131/*[email protected]",
},
"scopes": {
"https://esm.sh/v131/": {
"events": "node:events"// < if 'events' is imported by lib or lib2, this would be added here
}
}
}
The text was updated successfully, but these errors were encountered:
When adding a library via
deno task esm:add ...
, the CLI should automatically add an import map for any internal node modules imported by ...The text was updated successfully, but these errors were encountered: