forked from snowplow/snowplow-javascript-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexperiments.json
More file actions
28 lines (25 loc) · 1.2 KB
/
Copy pathexperiments.json
File metadata and controls
28 lines (25 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* This configuration file allows repo maintainers to enable and disable experimental
* Rush features. For full documentation, please see https://rushjs.io
*/
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/experiments.schema.json",
/**
* Rush 5.14.0 improved incremental builds to ignore spurious changes in the pnpm-lock.json file.
* This optimization is enabled by default. If you encounter a problem where "rush build" is neglecting
* to build some projects, please open a GitHub issue. As a workaround you can uncomment this line
* to temporarily restore the old behavior where everything must be rebuilt whenever pnpm-lock.json
* is modified.
*/
// "legacyIncrementalBuildDependencyDetection": true,
/**
* By default, rush passes --no-prefer-frozen-lockfile to 'pnpm install'.
* Set this option to true to pass '--frozen-lockfile' instead.
*/
// "usePnpmFrozenLockfileForRushInstall": 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
}