coolify/apps/client/tsconfig.json
Andras Bacsai 4ad7e1f8e6 wip
2022-12-12 16:04:41 +01:00

19 lines
403 B
JSON

{
"extends": "./.svelte-kit/tsconfig.json",
"exclude": ["node_modules/*", ".svelte-kit/*", "public/*"],
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": false,
"paths": {
"$lib": ["src/lib"],
"$lib/*": ["src/lib/*"]
}
}
}