tsconfig.json
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@config/*": [".config/*"],
"@content/*": ["content/*"],
"@test/*": ["test/*"]
},
"typeRoots": ["./src/@types", "./node_modules/@types"]
},
"exclude": ["src/images/components/**/*", "src/content"],
"include": [
"src/**/*",
"content/**/*",
"public/**/*",
"scripts/**/*",
"test/**/*",
".config/**/*"
]
}