We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe.
I want to use 2 different deno configs in a single repository. They have different importMap settings which have conflicting entries.
importMap
Describe the solution you'd like
Auto-detect different deno.json in subdirectories, and partition their handling in the language server.
deno.json
To override auto-detections, allow "deno.config" option to accept object value of the form:
{ ... "deno.config": { "path/to/foo": "path/to/foo/deno.json", "path/to/bar": "path/to/bar/deno.json" } ... }
and apply each config only to the corresponding directory.
The text was updated successfully, but these errors were encountered:
Related #713
Sorry, something went wrong.
deno.config
imports
deno(import-prefix-missing)
I see there is an open PR denoland/deno#20410 - Workspace support. Is this issue related to this PR?
Successfully merging a pull request may close this issue.
Is your feature request related to a problem? Please describe.
I want to use 2 different deno configs in a single repository. They have different
importMap
settings which have conflicting entries.Describe the solution you'd like
Auto-detect different
deno.json
in subdirectories, and partition their handling in the language server.To override auto-detections, allow "deno.config" option to accept object value of the form:
and apply each config only to the corresponding directory.
The text was updated successfully, but these errors were encountered: