Commits
Click on a commit to change the comparison rangefeat: allow subpath imports that start with #/ (#907)
closes #904
This opens up the door to symmetric `exports` and `imports`:
package.json:
```
{
"exports": {
"./*": "./src/*"
},
"imports": {
"#/*": "./src/*"
}
}
```