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: PathBuf
Allows 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: TsconfigReferences
Support 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 Freeze for TsconfigOptions
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