19 lines
366 B
JSON
Executable File
19 lines
366 B
JSON
Executable File
{
|
|
"extends": "astro/tsconfigs/base",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@components/*": ["src/components/*"],
|
|
"@layouts/*": ["src/layouts/*"]
|
|
},
|
|
"strictNullChecks": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
}
|
|
]
|
|
}
|
|
}
|