diff options
Diffstat (limited to 'src/import_record.zig')
-rw-r--r-- | src/import_record.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/import_record.zig b/src/import_record.zig index d48cfb1b0..7577b4af9 100644 --- a/src/import_record.zig +++ b/src/import_record.zig @@ -166,6 +166,9 @@ pub const ImportRecord = struct { /// If true, this import can be removed if it's unused is_external_without_side_effects: bool = false, + /// Used for async transpilation of CommonJS modules at runtime + is_top_level_require: bool = false, + kind: ImportKind, tag: Tag = Tag.none, |