mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
9b1997b8b6
The rules are now as follows: * In `import` statements, as mandated by the WHATWG specification, the import specifier is always treated as a URL. If it is a relative URL, it must start with either / or ./ or ../ * A script name passed to deno as a command line argument may be either an absolute URL or a local path. - If the name starts with a valid URI scheme followed by a colon, e.g. 'http:', 'https:', 'file:', 'foo+bar:', it always interpreted as a URL (even if Deno doesn't support the indicated protocol). - Otherwise, the script name is interpreted as a local path. The local path may be relative, and operating system semantics determine how it is resolved. Prefixing a relative path with ./ is not required.
12 lines
655 B
Text
12 lines
655 B
Text
[WILDCARD]error: Uncaught ImportPrefixMissing: relative import path not prefixed with / or ./ or ../
|
|
[WILDCARD] js/errors.ts:[WILDCARD]
|
|
at DenoError (js/errors.ts:[WILDCARD])
|
|
at maybeError (js/errors.ts:[WILDCARD])
|
|
at maybeThrowError (js/errors.ts:[WILDCARD])
|
|
at sendSync (js/dispatch.ts:[WILDCARD])
|
|
at fetchModuleMetaData (js/compiler.ts:[WILDCARD])
|
|
at _resolveModule (js/compiler.ts:[WILDCARD])
|
|
at js/compiler.ts:[WILDCARD]
|
|
at resolveModuleNames (js/compiler.ts:[WILDCARD])
|
|
at resolveModuleNamesWorker ([WILDCARD]typescript.js:[WILDCARD])
|
|
at resolveModuleNamesReusingOldState ([WILDCARD]typescript.js:[WILDCARD])
|