Skip to content

Commit 9484653

Browse files
authored
Merge pull request #24114 from Microsoft/inspectorToModules
Inspector to modules
2 parents 0ba8998 + b8c2eca commit 9484653

File tree

1 file changed

+37
-6
lines changed

1 file changed

+37
-6
lines changed

src/services/jsTyping.ts

Lines changed: 37 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,43 @@ namespace ts.JsTyping {
3232

3333
/* @internal */
3434
export const nodeCoreModuleList: ReadonlyArray<string> = [
35-
"buffer", "querystring", "events", "http", "cluster",
36-
"zlib", "os", "https", "punycode", "repl", "readline",
37-
"vm", "child_process", "url", "dns", "net",
38-
"dgram", "fs", "path", "string_decoder", "tls",
39-
"crypto", "stream", "util", "assert", "tty", "domain",
40-
"constants", "process", "v8", "timers", "console"];
35+
"assert",
36+
"async_hooks",
37+
"buffer",
38+
"child_process",
39+
"cluster",
40+
"console",
41+
"constants",
42+
"crypto",
43+
"dgram",
44+
"dns",
45+
"domain",
46+
"events",
47+
"fs",
48+
"http",
49+
"https",
50+
"http2",
51+
"inspector",
52+
"net",
53+
"os",
54+
"path",
55+
"perf_hooks",
56+
"process",
57+
"punycode",
58+
"querystring",
59+
"readline",
60+
"repl",
61+
"stream",
62+
"string_decoder",
63+
"timers",
64+
"tls",
65+
"tty",
66+
"url",
67+
"util",
68+
"v8",
69+
"vm",
70+
"zlib"
71+
];
4172

4273
/* @internal */
4374
export const nodeCoreModules = arrayToSet(nodeCoreModuleList);

0 commit comments

Comments
 (0)