diff options
author | 2021-08-14 23:04:29 -0700 | |
---|---|---|
committer | 2021-08-14 23:04:29 -0700 | |
commit | bfac22d951fb3ca2e1cf849a2af0cc60c372b1ed (patch) | |
tree | 3ca7f1213edc4ef290edfeae8a367a92904bd4dc /src/feature_flags.zig | |
parent | d95ffe63023c09ea792d4f0379374f7c6c7975e6 (diff) | |
download | bun-bfac22d951fb3ca2e1cf849a2af0cc60c372b1ed.tar.gz bun-bfac22d951fb3ca2e1cf849a2af0cc60c372b1ed.tar.zst bun-bfac22d951fb3ca2e1cf849a2af0cc60c372b1ed.zip |
fix defines
Former-commit-id: 12db22bc3f5875ee0c43d25f8247983967451c3f
Diffstat (limited to 'src/feature_flags.zig')
-rw-r--r-- | src/feature_flags.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/feature_flags.zig b/src/feature_flags.zig index 3cbd5787a..be216e69c 100644 --- a/src/feature_flags.zig +++ b/src/feature_flags.zig @@ -34,6 +34,9 @@ pub const css_supports_fence = true; pub const disable_entry_cache = false; pub const enable_bytecode_caching = false; +// 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; + pub const react_specific_warnings = true; // Disabled due to concurrency bug I don't have time to fix right now. // I suspect it's like 3 undefined memory issues. |