JSR is transforming files import statements and is leaving `npm:` prefixes on `import type {}...` statements instead of deprefixing. Changing the import statement from `import type {}...` to `import {}...` fixes the issue Expected, ```ts import type { MyType } from "my-npm-module-name"; import { MyClass } from "my-other-npm-module-name": ``` Received, ```ts import type { MyType } from "npm:my-npm-module-name"; import { MyClass } from "my-other-npm-module-name": ```