diff options
author | 2021-09-12 00:39:57 -0700 | |
---|---|---|
committer | 2021-09-12 00:39:57 -0700 | |
commit | 350569655bcf4348d521f20cec4da7aee55ae102 (patch) | |
tree | aa278040f04d477739a16aef25991ca1ce7cd4ed /src/feature_flags.zig | |
parent | 092f9ac766ff532cb34587b5d93c401070cc79cf (diff) | |
download | bun-350569655bcf4348d521f20cec4da7aee55ae102.tar.gz bun-350569655bcf4348d521f20cec4da7aee55ae102.tar.zst bun-350569655bcf4348d521f20cec4da7aee55ae102.zip |
Support bundling dynamically imported modules.
Diffstat (limited to 'src/feature_flags.zig')
-rw-r--r-- | src/feature_flags.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/feature_flags.zig b/src/feature_flags.zig index 33a4eaee1..b08bfbc0d 100644 --- a/src/feature_flags.zig +++ b/src/feature_flags.zig @@ -42,6 +42,8 @@ pub const watch_directories = true; pub const tailwind_css_at_keyword = true; +pub const bundle_dynamic_import = true; + // This feature flag exists so when you have defines inside package.json, you can use single quotes in nested strings. pub const allow_json_single_quotes = true; |