mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
Fix typecheck
This commit is contained in:
@@ -275,7 +275,7 @@ const fixture = [
|
||||
}),
|
||||
() => require("events"),
|
||||
() => {
|
||||
return new import.meta.require("events").EventEmitter();
|
||||
return new (import.meta.require("events").EventEmitter)();
|
||||
},
|
||||
async () => await import("node:assert"),
|
||||
async () => await import("./empty.js"),
|
||||
|
||||
@@ -18,8 +18,11 @@
|
||||
"examples/macros",
|
||||
"test/bun.js/solid-dom-fixtures",
|
||||
"test/bun.js/bundled",
|
||||
"src/deps",
|
||||
"bun-webkit",
|
||||
// JavaScriptCore builtins use a non-standard "@" symbol to indicate a private identifier which no other tool supports
|
||||
"src/bun.js/builtins",
|
||||
"src/bun.js/WebKit",
|
||||
"src/api/demo",
|
||||
"test/snapshots",
|
||||
"test/snapshots-no-hmr",
|
||||
|
||||
Reference in New Issue
Block a user