LSP auto-imports keep alias mappings for local dirs (
af49b5b)
Deno’s import resolution logic was narrowed so auto-import completions no longer suppress meaningful aliases like @app/ just because the referrer lives inside the mapped directory. This fixes suggestions such as @app/islands/components/Button.tsx instead of a less useful relative path, improving DX for projects that rely on alias-based import maps.
Other misc changes
- Added regression coverage for alias-based auto-imports inside mapped directories.
- Refactored import-map lookup behavior to distinguish diagnostics from completion-time suggestions.