mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
refactor(transformer): mark all EnvOptions as not implemented (#7004)
This commit is contained in:
parent
562bb9af7f
commit
f0c87d453d
1 changed files with 12 additions and 12 deletions
24
crates/oxc_transformer/src/env/options.rs
vendored
24
crates/oxc_transformer/src/env/options.rs
vendored
|
|
@ -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,
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue