From d69ac09c57788e5e29bb2a135dff79c65b25eeb4 Mon Sep 17 00:00:00 2001 From: Mark Lawlor Date: Tue, 1 Nov 2022 11:48:03 +1000 Subject: [PATCH] fix: revert back to ES2019 compile target --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 43bc4b9..140c512 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,7 @@ // https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping "lib": ["esnext"], "module": "commonjs", - "target": "esnext", + "target": "ES2019", "allowJs": true, "allowSyntheticDefaultImports": true, "esModuleInterop": true,