From 920d2d2b4c5d9206671171a8a2aee233a7d5dab2 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 7 May 2018 10:37:22 +0200 Subject: [PATCH] Add libs to tsconfig --- client/src/tsconfig.app.json | 8 +++++++- client/tsconfig.json | 2 ++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/client/src/tsconfig.app.json b/client/src/tsconfig.app.json index 4339f4d4b..af7a74e9e 100644 --- a/client/src/tsconfig.app.json +++ b/client/src/tsconfig.app.json @@ -4,7 +4,13 @@ "outDir": "../out-tsc/app", "baseUrl": "./", "module": "es2015", - "types": [] + "types": [], + "lib": [ + "es2017", + "es2016", + "es2015", + "dom" + ] }, "exclude": [ "test.ts", diff --git a/client/tsconfig.json b/client/tsconfig.json index 43b27ce8e..8ce9c5f96 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -13,6 +13,8 @@ ], "lib": [ "es2017", + "es2016", + "es2015", "dom" ], "baseUrl": "src",