TS Config Modernization Program Part 3 of many (#17904)

* noImplicitOverride: true

* noImplicitReturns: true

* noPropertyAccessFromIndexSignature: true
This commit is contained in:
Rijk van Zanten
2023-03-23 16:47:55 -04:00
committed by GitHub
parent 8b0c5f1250
commit 80f4807a09
129 changed files with 1097 additions and 1017 deletions

View File

@@ -8,7 +8,7 @@ import { getConfigFromEnv } from '../utils/get-config-from-env';
export const registerLocations = async (storage: StorageManager) => {
const env = getEnv();
const locations = toArray(env.STORAGE_LOCATIONS);
const locations = toArray(env['STORAGE_LOCATIONS']);
locations.forEach((location: string) => {
location = location.trim();