1 // with all the imports of the same module, the module should only be 2 // instantiated once 3 import "../subdir/auto_print_hello.ts"; 4 5 import "../subdir/auto_print_hello.ts"; 6 7 (async () => { 8 await import("../subdir/auto_print_hello.ts"); 9 })();