oxc_transformer 0.136.0

A collection of JavaScript tools written in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
use super::StyledComponentsOptions;

#[derive(Default, Debug, Clone)]
/// Plugin-specific transform options.
pub struct PluginsOptions {
    /// Options for `styled-components` transform.
    pub styled_components: Option<StyledComponentsOptions>,
    /// Enable tagged template transform plugin.
    pub tagged_template_transform: bool,
}