You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
typescript 3.9.2
When I run the script below, the process failed only with an error.
$ deno run mian.js
error: No such file or directory (os error 2)
file ./mian.js:
import{test}from"./cirno.js";test();
file ./cirno.js:
import{readFileStr}from"https://deno.land/std/fs/read_file_str.ts";//Comment this statement and the error disappearexportfunctiontest(){console.log("Hello World!");};
when I reproduce issue #5982 ,I got similar error message:
I think this is a debug related problem, at least in my case it seems that the parent /x/ libary got changed and errors have shown up on parent libaries; and the resulting missing libary file is the error 'error: No such file or directory (os error 2)'.
When I run the script below, the process failed only with an error.
file
./mian.js
:file
./cirno.js
:when I reproduce issue #5982 ,I got similar error message:
I think that past issue #6018 , #4267 and this issue may be the same issue.
The text was updated successfully, but these errors were encountered: