From c28cf4da168fa86a9246ee02af4158012b5c2f72 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Mon, 13 Oct 2025 19:33:50 +0300 Subject: [PATCH] chore(website/i18n): fix typecheck issue --- apps/website/tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/website/tsconfig.json b/apps/website/tsconfig.json index 5b02bdf11..48581e18c 100644 --- a/apps/website/tsconfig.json +++ b/apps/website/tsconfig.json @@ -1,6 +1,7 @@ { "extends": "../../tsconfig.base.json", "compilerOptions": { + "composite": true, "target": "ES2020", "module": "ESNext", "moduleResolution": "bundler", @@ -9,8 +10,8 @@ "jsxImportSource": "preact", "skipLibCheck": true, "paths": { - "react": ["./node_modules/preact/compat/"], - "react-dom": ["./node_modules/preact/compat/"] + "react": ["../../node_modules/preact/compat/"], + "react-dom": ["../../node_modules/preact/compat/"] } }, "include": ["node_modules/vite/client.d.ts", "**/*"],