From 961ac77955eb0dd522821e11c0f96abd3e3f7562 Mon Sep 17 00:00:00 2001 From: Joseph Izang Date: Thu, 1 Aug 2024 15:46:14 +0100 Subject: [PATCH] set tsconfig target version --- apps/doc-gen/tsconfig.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/doc-gen/tsconfig.json b/apps/doc-gen/tsconfig.json index 5aab5e7911..f33ee36705 100644 --- a/apps/doc-gen/tsconfig.json +++ b/apps/doc-gen/tsconfig.json @@ -2,6 +2,8 @@ "extends": "../../tsconfig.base.json", "compilerOptions": { "jsx": "react-jsx", + "target": "ES2022", + "lib": ["ES2015", "ES2016", "ES2018"], "allowJs": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true