Struct oxc_resolver::TsconfigOptions
source · pub struct TsconfigOptions {
pub config_file: PathBuf,
pub references: TsconfigReferences,
}Expand description
Tsconfig Options for ResolveOptions::tsconfig
Derived from tsconfig-paths-webpack-plugin
Fields§
§config_file: PathBufAllows you to specify where to find the TypeScript configuration file. You may provide
- a relative path to the configuration file. It will be resolved relative to cwd.
- an absolute path to the configuration file.
references: TsconfigReferencesSupport for Typescript Project References.
Trait Implementations§
source§impl Clone for TsconfigOptions
impl Clone for TsconfigOptions
source§fn clone(&self) -> TsconfigOptions
fn clone(&self) -> TsconfigOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl RefUnwindSafe for TsconfigOptions
impl Send for TsconfigOptions
impl Sync for TsconfigOptions
impl Unpin for TsconfigOptions
impl UnwindSafe for TsconfigOptions
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more