From 3faa74449aaad42c9142e0088f4ba56c81ae665f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20Flatval?= Date: Wed, 28 Jun 2023 14:54:03 +0200 Subject: [PATCH] chore: set tsconfig target to esnext --- examples/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tsconfig.json b/examples/tsconfig.json index c7786dfc7ee..6e25c1b4a96 100644 --- a/examples/tsconfig.json +++ b/examples/tsconfig.json @@ -1,6 +1,6 @@ { "compilerOptions": { - "target": "es5", + "target": "esnext", "lib": ["dom", "dom.iterable", "esnext"], "allowJs": true, "skipLibCheck": false,