Files
site-profile/tsconfig.json
Alex Lebens 641c7cb33f
All checks were successful
renovate / renovate (push) Successful in 26s
test-build / guarddog (push) Successful in 3m51s
test-build / build (push) Successful in 4m40s
feat: move scripts to script folder
2026-03-15 21:53:59 -05:00

25 lines
647 B
JSON

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