1234567891011121314151617181920212223242526272829303132 |
- /**
- * This configuration file allows repo maintainers to enable and disable experimental
- * Rush features. More documentation is available on the Rush website: https://rushjs.io
- */
- {
- "$schema": "https://developer.microsoft.com/json-schemas/rush/v5/experiments.schema.json",
- /**
- * By default, 'rush install' passes --no-prefer-frozen-lockfile to 'pnpm install'.
- * Set this option to true to pass '--frozen-lockfile' instead for faster installs.
- */
- // "usePnpmFrozenLockfileForRushInstall": true,
- /**
- * By default, 'rush update' passes --no-prefer-frozen-lockfile to 'pnpm install'.
- * Set this option to true to pass '--prefer-frozen-lockfile' instead to minimize shrinkwrap changes.
- */
- // "usePnpmPreferFrozenLockfileForRushUpdate": true,
- /**
- * If using the 'preventManualShrinkwrapChanges' option, restricts the hash to only include the layout of external dependencies.
- * Used to allow links between workspace projects or the addition/removal of references to existing dependency versions to not
- * cause hash changes.
- */
- // "omitImportersFromPreventManualShrinkwrapChanges": true,
- /**
- * If true, the chmod field in temporary project tar headers will not be normalized.
- * This normalization can help ensure consistent tarball integrity across platforms.
- */
- // "noChmodFieldInTarHeaderNormalization": true
- }
|