pub enum TsconfigReferences {
Disabled,
Auto,
Paths(Vec<PathBuf>),
}
Expand description
Configuration for TsconfigOptions::references
Variants§
Disabled
Auto
Use the references
field from tsconfig of config_file
.
Paths(Vec<PathBuf>)
Manually provided relative or absolute path.
Trait Implementations§
Source§impl Clone for TsconfigReferences
impl Clone for TsconfigReferences
Source§fn clone(&self) -> TsconfigReferences
fn clone(&self) -> TsconfigReferences
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 Freeze for TsconfigReferences
impl RefUnwindSafe for TsconfigReferences
impl Send for TsconfigReferences
impl Sync for TsconfigReferences
impl Unpin for TsconfigReferences
impl UnwindSafe for TsconfigReferences
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