From 0449e36b8a03eba71c13c2b2e831e449b42d48af Mon Sep 17 00:00:00 2001 From: William Welling Date: Mon, 17 Jul 2017 11:27:56 -0500 Subject: [PATCH] fixed linting on config.ts --- src/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.ts b/src/config.ts index b60fe304b1..e6dd9555b8 100644 --- a/src/config.ts +++ b/src/config.ts @@ -6,7 +6,7 @@ import { GlobalConfig } from './config/global-config.interface'; const GLOBAL_CONFIG: InjectionToken = new InjectionToken('config'); -let configContext = require.context("../config", false, /js$/); +const configContext = require.context('../config', false, /js$/); let production = false;