-
Beta Was this translation helpful? Give feedback.
Answered by
kitsonk
Jun 13, 2021
Replies: 1 comment 5 replies
-
The config file option Import maps which Deno supports solve the problem of relocating code at runtime and would be the equivalent feature for Deno and the Deno language server. While the language server supports import maps in the configuration, we don't have 100% of the features (like auto-completion) fully working with import maps yet. |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
MagicDuck
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The config file option
paths
doesn't make sense in a Deno context, because Deno doesn't just "transpile" code, it runs code, and "paths" is intended to indicate where code will be at runtime.Import maps which Deno supports solve the problem of relocating code at runtime and would be the equivalent feature for Deno and the Deno language server. While the language server supports import maps in the configuration, we don't have 100% of the features (like auto-completion) fully working with import maps yet.