15 lines
322 B
JSON
15 lines
322 B
JSON
{
|
|
"extends": "astro/tsconfigs/base",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"strictNullChecks": true,
|
|
"paths": {
|
|
"@components/*": ["src/components/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@styles/*": ["src/styles/*"],
|
|
"@images/*": ["src/images/*"]
|
|
},
|
|
"plugins": [{ "name": "@astrojs/ts-plugin" }]
|
|
}
|
|
}
|