Landing/AstroLanding/tsconfig.json
Sergejs Kozinecs bfe55eb38c Astro migration
2026-07-24 22:59:23 +03:00

28 lines
477 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
],
"compilerOptions": {
"strictNullChecks": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@components/*": [
"src/components/*"
],
"@images/*": [
"src/assets/images/*"
],
"@consts": [
"src/consts"
]
}
}
}