Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
test_runner: update node-config-schema
  • Loading branch information
pmarchini committed Jan 30, 2026
commit 9afe68dc1f48178e77a16194f4c32dd98f892bee
12 changes: 6 additions & 6 deletions doc/node-config-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,19 +193,15 @@
},
"experimental-print-required-tla": {
"type": "boolean",
"description": "Print pending top-level await. If --experimental-require-module is true, evaluate asynchronous graphs loaded by `require()` but do not run the microtasks, in order to to find and print top-level await in the graph"
},
"experimental-quic": {
"type": "boolean",
"description": "experimental QUIC support"
"description": "Print pending top-level await. If --require-module is true, evaluate asynchronous graphs loaded by `require()` but do not run the microtasks, in order to to find and print top-level await in the graph"
},
"experimental-repl-await": {
"type": "boolean",
"description": "experimental await keyword support in REPL"
},
"experimental-require-module": {
"type": "boolean",
"description": "Allow loading synchronous ES Modules in require()."
"description": "Legacy alias for --require-module"
},
"experimental-shadow-realm": {
"type": "boolean",
Expand Down Expand Up @@ -437,6 +433,10 @@
],
"description": "CommonJS module to preload (option can be repeated)"
},
"require-module": {
"type": "boolean",
"description": "Allow loading synchronous ES Modules in require()."
},
"secure-heap": {
"type": "number",
"description": "total size of the OpenSSL secure heap"
Expand Down
Loading