From 967b52d8b1ab62d6c3f922589e8ab52fe9a16502 Mon Sep 17 00:00:00 2001 From: Petri Partio Date: Tue, 19 Nov 2024 10:40:09 +0200 Subject: [PATCH] chore: update target to ES2017 --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 5b9ccbb..0a65616 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,8 @@ ], "paths": { "@/*": ["./*"] - } + }, + "target": "ES2017" }, "include": ["types/global.d.ts", "next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], "exclude": ["node_modules"]