diff options
Diffstat (limited to 'src/runtime/index-with-refresh.ts')
-rw-r--r-- | src/runtime/index-with-refresh.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/runtime/index-with-refresh.ts b/src/runtime/index-with-refresh.ts index dc0c361f8..abea4c0f4 100644 --- a/src/runtime/index-with-refresh.ts +++ b/src/runtime/index-with-refresh.ts @@ -1,3 +1,4 @@ +// @ts-nocheck export * from "./hmr"; export * from "./errors"; export * from "./index-without-hmr"; @@ -8,4 +9,4 @@ globalThis.process ||= { cwd() { return "/bun-fake-dir/"; }, -}; +} as any; |