Skip to content

Commit

Permalink
refactor(transformer): mark all EnvOptions as not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
Boshen committed Oct 29, 2024
1 parent 562bb9a commit eb02306
Showing 1 changed file with 12 additions and 12 deletions.
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

0 comments on commit eb02306

Please sign in to comment.