From 906deb0fd3a9e82bf449c704dfb7dc4d0226bcb9 Mon Sep 17 00:00:00 2001 From: Jan Librowski Date: Tue, 15 Sep 2026 13:08:45 +0200 Subject: [PATCH] chore: type-check spec files in demo and ai-studio Both app tsconfigs excluded spec and test files, so tsc never saw them and CI passed with type errors in tests. The exclusion predates the first tests in these apps; removing it needs no code changes. --- apps/ai-studio/tsconfig.json | 2 +- apps/demo/tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/ai-studio/tsconfig.json b/apps/ai-studio/tsconfig.json index 2fa5614b6..2ccf6711a 100644 --- a/apps/ai-studio/tsconfig.json +++ b/apps/ai-studio/tsconfig.json @@ -9,5 +9,5 @@ "verbatimModuleSyntax": true, "types": ["node", "vite/client", "vite-plugin-svgr/client"] }, - "exclude": ["src/**/*.spec.ts", "src/**/*.test.ts", "src/**/*.spec.tsx", "src/**/*.test.tsx", "dist"] + "exclude": ["dist"] } diff --git a/apps/demo/tsconfig.json b/apps/demo/tsconfig.json index 2fa5614b6..2ccf6711a 100644 --- a/apps/demo/tsconfig.json +++ b/apps/demo/tsconfig.json @@ -9,5 +9,5 @@ "verbatimModuleSyntax": true, "types": ["node", "vite/client", "vite-plugin-svgr/client"] }, - "exclude": ["src/**/*.spec.ts", "src/**/*.test.ts", "src/**/*.spec.tsx", "src/**/*.test.tsx", "dist"] + "exclude": ["dist"] }