2022-12-12 08:44:23 +01:00
|
|
|
{
|
|
|
|
"extends": "./.svelte-kit/tsconfig.json",
|
2022-12-12 16:04:41 +01:00
|
|
|
"exclude": ["node_modules/*", ".svelte-kit/*", "public/*"],
|
2022-12-12 08:44:23 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": false,
|
|
|
|
"paths": {
|
2022-12-12 16:04:41 +01:00
|
|
|
"$lib": ["src/lib"],
|
|
|
|
"$lib/*": ["src/lib/*"]
|
2022-12-12 08:44:23 +01:00
|
|
|
}
|
|
|
|
}
|
2022-12-12 16:04:41 +01:00
|
|
|
}
|