coolify/apps/ui/tsconfig.json

19 lines
375 B
JSON
Raw Normal View History

2022-07-06 11:02:36 +02:00
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"paths": {
"$lib": ["src/lib"],
"$lib/*": ["src/lib/*"],
"$commonjson/*": ["common/*"]
}
}
}