1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-16 09:33:13 +02:00
blog/tsconfig.json
2023-11-06 13:37:27 +00:00

30 lines
745 B
JSON

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