From 5a5aaf1afb0ed529250d77e2bc0f09b67e5730d7 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Mon, 2 Apr 2018 11:58:23 -0700 Subject: [PATCH] Lowercase tsconfig lib entries to remove warnings --- tsconfig.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index e56930e639..bcba358d68 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,10 +3,10 @@ "module": "commonjs", "target": "es5", "lib": [ - "DOM", - "ES5", - "ScriptHost", - "ES2015.Promise" + "dom", + "es5", + "scripthost", + "es2015.promise" ], "rootDir": "src", "outDir": "lib",