reintroduce polyfill

deepsource-autofix-76c6eb20
Dan Gowans 2023-01-25 14:35:45 -05:00
parent e5f466e0ea
commit 8c30b2ea1d
3 changed files with 3 additions and 3 deletions

View File

@ -1,3 +1,4 @@
import './polyfills.js';
import type * as configTypes from '../types/configTypes';
export declare function getProperty(propertyName: 'application.applicationName'): string;
export declare function getProperty(propertyName: 'application.logoURL'): string;

View File

@ -1,3 +1,4 @@
import './polyfills.js';
import { config } from '../data/config.js';
const configFallbackValues = new Map();
configFallbackValues.set('application.applicationName', 'Lot Occupancy System');

View File

@ -1,13 +1,11 @@
/* eslint-disable @typescript-eslint/indent, node/no-unpublished-import */
// import { applyPolyfills } from './polyfills.js'
import './polyfills.js'
import { config } from '../data/config.js'
import type * as configTypes from '../types/configTypes'
// applyPolyfills()
/*
* SET UP FALLBACK VALUES
*/