From a1c8e3c27f6173adaf27db0cc8a1bbfb09b549ae Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Tue, 12 Nov 2024 17:35:45 +0100 Subject: [PATCH] build(ts): target ES2019 instead of ESNext --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 238655f..89d8d5a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { // Enable latest features "lib": ["ESNext", "DOM"], - "target": "ESNext", + "target": "ES2019", "module": "ESNext", "moduleDetection": "force", "jsx": "react-jsx",