Rush StackShopBlogEvents
Skip to main content

Home > @rushstack/package-extractor > IExtractorOptions > linkCreation

IExtractorOptions.linkCreation property

The link creation mode to use. "default": Create the links while copying the files; this is the default behavior. Use this setting if your file copy tool can handle links correctly. "script": A Node.js script called create-links.js will be written to the target folder. Use this setting to create links on the server machine, after the files have been uploaded. "none": Do nothing; some other tool may create the links later, based on the extractor-metadata.json file.

Signature:

linkCreation?: 'default' | 'script' | 'none';