From f09cd4ecc4fd92d76531dd0c5e03d9846f9136ca Mon Sep 17 00:00:00 2001 From: Michael Puehringer Date: Wed, 7 Apr 2021 06:44:41 +0200 Subject: [PATCH] build: set importHelpers to false for tslib compatibility --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index b3f2510..ad44498 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "module": "ESNext", "target": "ES5", - "importHelpers": true, + "importHelpers": false, "sourceMap": true, "lib": ["DOM", "ES2015", "es2016.array.include", "es2017.object"], "composite": true,