Hierarchy

  • DestOptions

Properties

cwd?: string

Specify the working directory the folder is relative to Default is process.cwd()

dirMode?: string | number

Specify the mode the directory should be created with. Default is the process mode

mode?: string | number

Specify the mode the files should be created with Default is the mode of the input file (file.stat.mode) or the process mode if the input file has no mode property

overwrite?: boolean

Specify if existing files with the same path should be overwritten or not. Default is true, to always overwrite existing files

relativeSymlinks?: boolean

When creating a symlink, whether or not the created symlink should be relative. If false, the symlink will be absolute. Note: This option will be ignored if a junction is being created.

sourcemaps?: string | true

Enables sourcemap support on files passed through the stream. Will write inline soucemaps if specified as true. Specifying a string path will write external sourcemaps at the given path.

useJunctions?: boolean

When creating a symlink, whether or not a directory symlink should be created as a junction.