2025-12-26 14:26:37 +03:00
|
|
|
{
|
2025-12-30 11:05:13 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"rewriteRelativeImportExtensions": true,
|
|
|
|
|
"allowJs": true,
|
|
|
|
|
"checkJs": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"strict": true,
|
2025-12-30 18:57:58 +03:00
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"$lib/*": ["./src/lib/*"]
|
|
|
|
|
}
|
2025-12-30 11:25:50 +03:00
|
|
|
},
|
2025-12-30 18:57:58 +03:00
|
|
|
"exclude": [
|
|
|
|
|
"./src/lib/components/ui",
|
|
|
|
|
"svelte.config.js",
|
|
|
|
|
"node_modules",
|
|
|
|
|
"dist"
|
|
|
|
|
]
|
2025-12-26 14:26:37 +03:00
|
|
|
}
|