From 1783621e2a95b1c99f30f8ca14338718e7e481e7 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Mon, 22 Feb 2021 10:28:19 +0100 Subject: [PATCH] Raise target to ES5 --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 2ddb2c9..085bf46 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "compilerOptions": { "declaration": true, "sourceMap": true, - "lib": ["es2016"], + "target": "ES5", "rootDir": "src", "outDir": "dist", "strict": true,