From 03a9b3365eb220a18d8a885dac54000b7e4e5be0 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 000000000..ea64275b8 --- /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 a42a71f42..3fa8febcf 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,