We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29a5855 commit 4a5d7a4Copy full SHA for 4a5d7a4
src/node.cc
@@ -780,7 +780,10 @@ static ExitCode ProcessGlobalArgsInternal(std::vector<std::string>* args,
780
env_opts->abort_on_uncaught_exception = true;
781
}
782
783
- v8_args.emplace_back("--js-source-phase-imports");
+ if (std::ranges::find(v8_args, "--no-js-source-phase-imports") ==
784
+ v8_args.end()) {
785
+ v8_args.emplace_back("--js-source-phase-imports");
786
+ }
787
788
#ifdef __POSIX__
789
// Block SIGPROF signals when sleeping in epoll_wait/kevent/etc. Avoids the
0 commit comments