diff options
author | 2022-04-16 09:29:10 -0700 | |
---|---|---|
committer | 2022-04-16 09:29:10 -0700 | |
commit | 0137e5cf94a2cfd510f70d8881f67e8066e0d098 (patch) | |
tree | c16b792c1e75b010f5e8a9b0cc7f924f69e3e236 /src/options.zig | |
parent | 89ca887ea0c0c673f1c1c22cb5913f09435feeb6 (diff) | |
download | bun-0137e5cf94a2cfd510f70d8881f67e8066e0d098.tar.gz bun-0137e5cf94a2cfd510f70d8881f67e8066e0d098.tar.zst bun-0137e5cf94a2cfd510f70d8881f67e8066e0d098.zip |
[JS Parser] Support explicit removing
Diffstat (limited to 'src/options.zig')
-rw-r--r-- | src/options.zig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/options.zig b/src/options.zig index e4b423098..99a82c7cb 100644 --- a/src/options.zig +++ b/src/options.zig @@ -1120,6 +1120,8 @@ pub const BundleOptions = struct { auto_import_jsx: bool = true, allow_runtime: bool = true, + trim_unused_imports: ?bool = null, + hot_module_reloading: bool = false, inject: ?[]string = null, origin: URL = URL{}, |