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
I have the two following modules:
// external.ts export default external = "external"; // fail.ts import external from "external.ts"; console.log(external);
Then:
$ deno run fail.ts Compiling file:///home/user/fail.ts relative URL with a cannot-be-a-base base
This error message is very unclear. It should at least mention the file and the line number of the import.
The text was updated successfully, but these errors were encountered:
Hello! I would like to work on this if possible, with some guidance. Where should I look?
Sorry, something went wrong.
I just installed Deno, and run straight into this issue. This should be higher priority... no idea where to begin fixing this in my codebase.
This issue will be fixed in #2572
Fixed in #2572
$ deno_dev fail.ts error: Uncaught ImportPrefixMissing: relative import path not prefixed with / or ./ or ../ ► js/errors.ts:33:12
CC @ry
No branches or pull requests
I have the two following modules:
Then:
This error message is very unclear. It should at least mention the file and the line number of the import.
The text was updated successfully, but these errors were encountered: