I have a package in my workspace that is basically a static website and that will be used by another package, when I do js { "name": "my-static-site", "version": "1.0.0", "type": "module", "files": ["dist"], "exports": { "./dist": "./dist" } } but when I now in my consumer package do js import "my-static-site/dist" that does not recognize the /dist is this some known issue in bun? also would importing just the path work like this ```js
import "my-static-site/dist" with {type: "url"}