mirror of
https://github.com/xHyroM/website.git
synced 2024-11-10 01:38:05 +01:00
16 lines
403 B
JSON
16 lines
403 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["src/*"],
|
|
"@docs/*": ["docs/*"],
|
|
"@pages/*": ["src/pages/*"],
|
|
"@assets/*": ["src/assets"],
|
|
"@scripts/*": ["src/scripts"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@components/*": ["src/components/*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", ".astro", "dist"]
|
|
}
|