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
Bad:
import * as path from "https://deno.land/std/path/mod.ts";
Good (uses import map):
import * as path from "@std/path";
Why: I want to ensure my dependenices are defined in the deno.json file instead of accidentally in the code (ex. via an auto-import going crazy).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bad:
Good (uses import map):
Why: I want to ensure my dependenices are defined in the deno.json file instead of accidentally in the code (ex. via an auto-import going crazy).
The text was updated successfully, but these errors were encountered: