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",
"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", "**/*"],