15 lines
325 B
JSON
15 lines
325 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"compilerOptions": {
|
|
"types": ["astro/client"],
|
|
"allowJs": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"~/*": ["src/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@layouts/*": ["src/layouts/*"]
|
|
},
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true
|
|
}
|
|
}
|