chore(website/i18n): fix typecheck issue

This commit is contained in:
Elian Doran 2025-10-13 19:33:50 +03:00
parent 2b915a1217
commit c28cf4da16
No known key found for this signature in database

View File

@ -1,6 +1,7 @@
{ {
"extends": "../../tsconfig.base.json", "extends": "../../tsconfig.base.json",
"compilerOptions": { "compilerOptions": {
"composite": true,
"target": "ES2020", "target": "ES2020",
"module": "ESNext", "module": "ESNext",
"moduleResolution": "bundler", "moduleResolution": "bundler",
@ -9,8 +10,8 @@
"jsxImportSource": "preact", "jsxImportSource": "preact",
"skipLibCheck": true, "skipLibCheck": true,
"paths": { "paths": {
"react": ["./node_modules/preact/compat/"], "react": ["../../node_modules/preact/compat/"],
"react-dom": ["./node_modules/preact/compat/"] "react-dom": ["../../node_modules/preact/compat/"]
} }
}, },
"include": ["node_modules/vite/client.d.ts", "**/*"], "include": ["node_modules/vite/client.d.ts", "**/*"],