/c.ts(1,16): error TS2792: Cannot find module './thisfiledoesnotexist.ts'. Did you mean to set the 'moduleResolution' option to 'nodenext', or to add aliases to the 'paths' option?


==== /ts.ts (0 errors) ====
    export {};
    
==== /tsx.tsx (0 errors) ====
    export {};
    
==== /dts.d.ts (0 errors) ====
    export {};
    
==== /b.ts (0 errors) ====
    import {} from "./ts.js";
    import {} from "./ts.ts";
    import type {} from "./ts.d.ts";
    
    import {} from "./tsx.js";
    import {} from "./tsx.jsx";
    import {} from "./tsx.ts";
    import {} from "./tsx.tsx";
    import type {} from "./tsx.d.ts";
    
    import {} from "./dts.js";
    import {} from "./dts.ts";
    import type {} from "./dts.d.ts";
    
==== /c.ts (1 errors) ====
    import {} from "./thisfiledoesnotexist.ts";
                   ~~~~~~~~~~~~~~~~~~~~~~~~~~~
!!! error TS2792: Cannot find module './thisfiledoesnotexist.ts'. Did you mean to set the 'moduleResolution' option to 'nodenext', or to add aliases to the 'paths' option?
    