23 lines
No EOL
423 B
JSON
23 lines
No EOL
423 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@components/*": [
|
|
"src/components/*"
|
|
],
|
|
"@library/*": [
|
|
"src/library/*"
|
|
],
|
|
"@layouts/*": [
|
|
"src/layouts/*"
|
|
],
|
|
"@styles/*": [
|
|
"src/styles/*"
|
|
]
|
|
},
|
|
"jsx": "preserve"
|
|
}
|
|
} |