From d05ccdaf090535443ae3980f0dd3f28ff8adc898 Mon Sep 17 00:00:00 2001 From: Konsti Wohlwend Date: Tue, 26 May 2026 13:32:09 -0700 Subject: [PATCH] Fix skills app CI typecheck (#1490) --- apps/skills/tsconfig.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/apps/skills/tsconfig.json b/apps/skills/tsconfig.json index 3494c8651..f9f1af34e 100644 --- a/apps/skills/tsconfig.json +++ b/apps/skills/tsconfig.json @@ -1,10 +1,11 @@ { "compilerOptions": { - "target": "es2020", + "target": "es2021", "lib": [ "dom", "dom.iterable", - "esnext" + "es2021", + "es2022.error" ], "allowJs": true, "strict": true, @@ -17,6 +18,9 @@ "jsx": "react-jsx", "incremental": true, "noErrorTruncation": true, + "types": [ + "vitest/importMeta" + ], "plugins": [ { "name": "next"