Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ed2d373

Browse filesBrowse files
joyeecheungmarco-ippolito
authored andcommitted
module: disable require(esm) for policy and network import
These features are already removed since v22. There is no point supporting them to work with require(esm) in v20. PR-URL: #56927 Refs: #52697 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
1 parent de313b2 commit ed2d373
Copy full SHA for ed2d373

File tree

Expand file treeCollapse file tree

1 file changed

+4
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-0
lines changed
Open diff view settings
Collapse file

‎src/node_options.cc‎

Copy file name to clipboardExpand all lines: src/node_options.cc
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,10 @@ void EnvironmentOptions::CheckOptions(std::vector<std::string>* errors,
121121
}
122122
}
123123

124+
if (!experimental_policy.empty() || experimental_https_modules) {
125+
require_module = false;
126+
}
127+
124128
if (!type.empty()) {
125129
if (type != "commonjs" && type != "module") {
126130
errors->push_back("--experimental-default-type must be "

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.