From c798ce523e88d8cecb30c6ad6ca53997669feb97 Mon Sep 17 00:00:00 2001 From: Thijs Louisse Date: Tue, 5 Nov 2024 16:54:34 +0100 Subject: [PATCH] fix: revert es version in tsconfig (as it was breaking types) --- .changeset/short-experts-mix.md | 5 +++++ tsconfig.json | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .changeset/short-experts-mix.md diff --git a/.changeset/short-experts-mix.md b/.changeset/short-experts-mix.md new file mode 100644 index 0000000000..ea64275b8a --- /dev/null +++ b/.changeset/short-experts-mix.md @@ -0,0 +1,5 @@ +--- +'@lion/ui': patch +--- + +revert es version in tsconfig (as it was breaking types) diff --git a/tsconfig.json b/tsconfig.json index a42a71f423..3fa8febcfb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "target": "ESNext", "module": "ESNext", "moduleResolution": "NodeNext", - "lib": ["es2022", "dom"], + "lib": ["es2017", "dom"], "allowJs": true, "checkJs": true, "strict": true,