We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a464ab1 commit 1184fa1Copy full SHA for 1184fa1
Thread.ts
@@ -97,9 +97,9 @@ onmessage = async function(e) {
97
if (file) {
98
this.debug(
99
"importing file: ",
100
- "file://" + fqfn
+ import.meta.resolve("file://" + Deno.realPathSync(fqfn)),
101
);
102
- const x = await import("file://" + fqfn);
+ const x = await import("file://" + Deno.realPathSync(fqfn));
103
104
"file imported, inlining the following: ",
105
Object.keys(x).join(","),
0 commit comments