2025-06-14 11:05:38 +03:00
|
|
|
{
|
2025-09-27 22:36:26 +03:00
|
|
|
"extends": "../../tsconfig.base.json",
|
2025-06-14 11:05:38 +03:00
|
|
|
"compilerOptions": {
|
2025-10-13 19:33:50 +03:00
|
|
|
"composite": true,
|
2025-09-27 01:42:15 +03:00
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
/* Preact Config */
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"jsxImportSource": "preact",
|
2025-06-14 11:05:38 +03:00
|
|
|
"skipLibCheck": true,
|
2025-10-27 18:19:35 +02:00
|
|
|
"types": [
|
2025-11-04 08:55:05 +02:00
|
|
|
"vite/client",
|
|
|
|
|
"vitest/config"
|
2025-10-27 18:19:35 +02:00
|
|
|
],
|
2025-09-27 01:42:15 +03:00
|
|
|
"paths": {
|
2025-10-13 19:33:50 +03:00
|
|
|
"react": ["../../node_modules/preact/compat/"],
|
|
|
|
|
"react-dom": ["../../node_modules/preact/compat/"]
|
2025-09-27 01:42:15 +03:00
|
|
|
}
|
|
|
|
|
},
|
2025-09-27 22:36:26 +03:00
|
|
|
"include": ["node_modules/vite/client.d.ts", "**/*"],
|
|
|
|
|
"exclude": ["dist"]
|
2025-06-14 11:05:38 +03:00
|
|
|
}
|