next_taskless/
constants.rs

1pub const NODE_EXTERNALS: [&str; 64] = [
2    "assert",
3    "assert/strict",
4    "async_hooks",
5    "buffer",
6    "child_process",
7    "cluster",
8    "console",
9    "constants",
10    "crypto",
11    "dgram",
12    "diagnostics_channel",
13    "dns",
14    "dns/promises",
15    "domain",
16    "events",
17    "fs",
18    "fs/promises",
19    "http",
20    "http2",
21    "https",
22    "inspector",
23    "module",
24    "net",
25    "os",
26    "path",
27    "path/posix",
28    "path/win32",
29    "perf_hooks",
30    "process",
31    "punycode",
32    "querystring",
33    "readline",
34    "repl",
35    "stream",
36    "stream/promises",
37    "stream/web",
38    "string_decoder",
39    "sys",
40    "timers",
41    "timers/promises",
42    "tls",
43    "trace_events",
44    "tty",
45    "url",
46    "util",
47    "util/types",
48    "v8",
49    "vm",
50    "wasi",
51    "worker_threads",
52    "zlib",
53    "pnpapi",
54    "_http_agent",
55    "_http_client",
56    "_http_common",
57    "_http_incoming",
58    "_http_outgoing",
59    "_http_server",
60    "_stream_duplex",
61    "_stream_passthrough",
62    "_stream_readable",
63    "_stream_transform",
64    "_stream_wrap",
65    "_stream_writable",
66];
67
68pub const EDGE_NODE_EXTERNALS: [&str; 5] = ["buffer", "events", "assert", "util", "async_hooks"];
69
70pub const BUN_EXTERNALS: [&str; 6] = [
71    "bun:ffi",
72    "bun:jsc",
73    "bun:sqlite",
74    "bun:test",
75    "bun:wrap",
76    "bun",
77];