diff options
Diffstat (limited to 'src/bun.js/javascript.zig')
-rw-r--r-- | src/bun.js/javascript.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bun.js/javascript.zig b/src/bun.js/javascript.zig index a049f4263..d8043ca44 100644 --- a/src/bun.js/javascript.zig +++ b/src/bun.js/javascript.zig @@ -751,6 +751,7 @@ pub const VirtualMachine = struct { this.macro_mode = true; this.event_loop = &this.macro_event_loop; Analytics.Features.macros = true; + this.transpiler_store.enabled = false; } pub fn disableMacroMode(this: *VirtualMachine) void { @@ -758,6 +759,7 @@ pub const VirtualMachine = struct { this.bundler.resolver.caches.fs.use_alternate_source_cache = false; this.macro_mode = false; this.event_loop = &this.regular_event_loop; + this.transpiler_store.enabled = true; } pub fn getAPIGlobals() []js.JSClassRef { |