I'm glad to see that recursive resolution is no longer being provided. Given this, should we consider supporting bare addresses? This would allow: ```json { "imports": { "x": "./x.js" } } ``` to be equivalent to: ```json { "imports": { "x": "x.js" } } ``` I'd be glad to put a PR together as well if this would be useful.
I'm glad to see that recursive resolution is no longer being provided.
Given this, should we consider supporting bare addresses? This would allow:
{ "imports": { "x": "./x.js" } }to be equivalent to:
{ "imports": { "x": "x.js" } }I'd be glad to put a PR together as well if this would be useful.