Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Bedford <guybedford@gmail.com>2019-12-17 08:58:30 +0300
committerMyles Borins <mylesborins@google.com>2020-01-16 04:48:52 +0300
commitfc4e4135547a73bb54bf7d56ad1d478cf80c3140 (patch)
tree40d73f89090ef57572c3d2e6fc051f588c097042 /src/node_options.h
parent7ab33f2893002d50e25542cc6cbfb53ff28b0d41 (diff)
module: unflag conditional exports
PR-URL: https://github.com/nodejs/node/pull/31001 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
Diffstat (limited to 'src/node_options.h')
-rw-r--r--src/node_options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_options.h b/src/node_options.h
index 1e156a7edc5..788a4815e50 100644
--- a/src/node_options.h
+++ b/src/node_options.h
@@ -101,8 +101,8 @@ class EnvironmentOptions : public Options {
public:
bool abort_on_uncaught_exception = false;
bool enable_source_maps = false;
- bool experimental_conditional_exports = false;
bool experimental_json_modules = false;
+ bool experimental_modules = false;
std::string experimental_specifier_resolution;
std::string es_module_specifier_resolution;
bool experimental_wasm_modules = false;