Files
site-profile/tsconfig.json
Alex Lebens 1dc4ccfbc6
Some checks failed
renovate / renovate (push) Has been cancelled
test-build / build (push) Has been cancelled
merge in new changes
2025-08-11 16:25:03 -05:00

24 lines
581 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"strictNullChecks": true,
"baseUrl": "src",
"jsx": "react-jsx",
"types": ["astro/client"],
"paths": {
"@/*": ["*"],
"@src/*": ["src/*"],
"@lib/*": ["lib/*"],
"@components/*": ["components/*"],
"@content/*": ["content/*"],
"@layouts/*": ["layouts/*"],
"@styles/*": ["styles/*"],
"@pages/*": ["pages/*"],
"@support/*": ["support/*"],
"@images/*": ["images/*"]
}
}
}