### Description In windows, Using dynamic import with absolute path cause `ERR_UNSUPPORTED_ESM_URL_SCHEME` error  ### Reproduction 1. create a.ts file following ```ts import path from "path"; const abs_path = path.resolve('./b.ts', ); // absolute path import(abs_path) ``` 2. run `node --loader @esbuild-kit/esm-loader a.ts` ### extra `tsx` has same error.