We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdb2698 commit a9abcb4Copy full SHA for a9abcb4
src/compiler/sys.ts
@@ -131,9 +131,6 @@ let pollingChunkSize = createPollingIntervalBasedLevels(defaultChunkLevels);
131
export let unchangedPollThresholds = createPollingIntervalBasedLevels(defaultChunkLevels);
132
133
function setCustomPollingValues(system: System) {
134
- if (system.getEnvironmentVariable === undefined) {
135
- return;
136
- }
137
const pollingIntervalChanged = setCustomLevels("TSC_WATCH_POLLINGINTERVAL", PollingInterval);
138
pollingChunkSize = getCustomPollingBasedLevels("TSC_WATCH_POLLINGCHUNKSIZE", defaultChunkLevels) || pollingChunkSize;
139
unchangedPollThresholds = getCustomPollingBasedLevels("TSC_WATCH_UNCHANGEDPOLLTHRESHOLDS", defaultChunkLevels) || unchangedPollThresholds;
0 commit comments