From 98a53051eeac13527bf4708f1784b79fdefde5eb Mon Sep 17 00:00:00 2001 From: b1ek Date: Sat, 11 May 2024 21:54:28 +1000 Subject: [PATCH] fix: set TS lib to ES2023 --- tsconfig.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..95e4a11 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,5 @@ +{ + "compilerOptions": { + "lib": ["ES2023"] + } +}