Files
landing/tsconfig.json
2026-01-15 15:05:42 +01:00

19 lines
237 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
]
}
}
}