15 lines
331 B
JSON
15 lines
331 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@component/*": ["src/components/*.astro"],
|
|
"@layout/*": ["src/layouts/*.astro"],
|
|
"@utils": ["src/utils/index.ts"],
|
|
"@data/*": ["src/data/*"],
|
|
}
|
|
}
|
|
}
|