Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(transformer): mark all EnvOptions as not implemented #7004

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions crates/oxc_transformer/src/env/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,40 +18,40 @@ pub struct EnvOptions {
#[serde(default = "default_as_true")]
pub bugfixes: bool,

/// Unused.
#[deprecated = "Not Implemented"]
pub spec: bool,

/// Unused.
#[deprecated = "Not Implemented"]
pub loose: bool,

/// Unused.
#[deprecated = "Not Implemented"]
pub modules: Option<Value>,

/// Unused.
#[deprecated = "Not Implemented"]
pub debug: bool,

/// Unused.
#[deprecated = "Not Implemented"]
pub include: Option<Value>,

/// Unused.
#[deprecated = "Not Implemented"]
pub exclude: Option<Value>,

/// Unused.
#[deprecated = "Not Implemented"]
pub use_built_ins: Option<Value>,

/// Unused.
#[deprecated = "Not Implemented"]
pub corejs: Option<Value>,

/// Unused.
#[deprecated = "Not Implemented"]
pub force_all_transforms: bool,

/// Unused.
#[deprecated = "Not Implemented"]
pub config_path: Option<String>,

/// Unused.
#[deprecated = "Not Implemented"]
pub ignore_browserslist_config: bool,

/// Unused.
#[deprecated = "Not Implemented"]
pub shipped_proposals: bool,
}

Expand Down
Loading