16 lines
380 B
JSON
16 lines
380 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/components/*": ["src/components/*.astro"],
|
|
"@/layouts/*": ["src/layouts/*.astro"],
|
|
"@/utils": ["src/utils/index.ts"],
|
|
"@/data/*": ["src/data/*"],
|
|
"@/site-config": ["src/site.config.ts"]
|
|
}
|
|
}
|
|
}
|