diff options
Diffstat (limited to 'src/runtime.zig')
-rw-r--r-- | src/runtime.zig | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/runtime.zig b/src/runtime.zig index 33561f9ce..2cce4a87f 100644 --- a/src/runtime.zig +++ b/src/runtime.zig @@ -286,16 +286,13 @@ pub const Runtime = struct { /// See also https://github.com/babel/babel/pull/2972 /// See also https://github.com/facebook/react/issues/5138 jsx_optimization_inline: bool = false, - jsx_optimization_hoist: bool = false, trim_unused_imports: bool = false, should_fold_numeric_constants: bool = false, - /// inject this at the top of the file? - /// ```js - /// var require = import.meta.require.bind(import.meta); - /// ``` + /// Use `import.meta.require()` instead of require()? + /// This is only supported in Bun. dynamic_require: bool = false, replace_exports: ReplaceableExport.Map = .{}, |