| pub const NODE_EXTERNALS: [&str; 64] = [ | |
| "assert", | |
| "assert/strict", | |
| "async_hooks", | |
| "buffer", | |
| "child_process", | |
| "cluster", | |
| "console", | |
| "constants", | |
| "crypto", | |
| "dgram", | |
| "diagnostics_channel", | |
| "dns", | |
| "dns/promises", | |
| "domain", | |
| "events", | |
| "fs", | |
| "fs/promises", | |
| "http", | |
| "http2", | |
| "https", | |
| "inspector", | |
| "module", | |
| "net", | |
| "os", | |
| "path", | |
| "path/posix", | |
| "path/win32", | |
| "perf_hooks", | |
| "process", | |
| "punycode", | |
| "querystring", | |
| "readline", | |
| "repl", | |
| "stream", | |
| "stream/promises", | |
| "stream/web", | |
| "string_decoder", | |
| "sys", | |
| "timers", | |
| "timers/promises", | |
| "tls", | |
| "trace_events", | |
| "tty", | |
| "url", | |
| "util", | |
| "util/types", | |
| "v8", | |
| "vm", | |
| "wasi", | |
| "worker_threads", | |
| "zlib", | |
| "pnpapi", | |
| "_http_agent", | |
| "_http_client", | |
| "_http_common", | |
| "_http_incoming", | |
| "_http_outgoing", | |
| "_http_server", | |
| "_stream_duplex", | |
| "_stream_passthrough", | |
| "_stream_readable", | |
| "_stream_transform", | |
| "_stream_wrap", | |
| "_stream_writable", | |
| ]; | |
| pub const EDGE_NODE_EXTERNALS: [&str; 5] = ["buffer", "events", "assert", "util", "async_hooks"]; | |
| pub const BUN_EXTERNALS: [&str; 6] = [ | |
| "bun:ffi", | |
| "bun:jsc", | |
| "bun:sqlite", | |
| "bun:test", | |
| "bun:wrap", | |
| "bun", | |
| ]; | |