blob: 3c35e361cec51b44e2aea1913d55498871e026bf (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
 | // @ts-nocheck
export * from "./hmr";
export * from "./errors";
export * from "./index-without-hmr";
globalThis.process ||= {
  env: {},
  cwd() {
    return "/bun-fake-dir/";
  },
};
 |