From d0128b68eb83ac49bfe8eea6561b1b732f4b42eb Mon Sep 17 00:00:00 2001 From: David Graham Date: Wed, 3 Aug 2022 14:50:51 -0600 Subject: [PATCH] Lower build target to 2020 The esnext target is a pointer to future versions so set a fixed output target version. --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 45122a2..1015c04 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { - "module": "esnext", - "target": "esnext", + "module": "es2020", + "target": "es2020", "strict": false, "declaration": true, "outDir": "dist",