20 lines
468 B
JSON
20 lines
468 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [".astro/types.d.ts", "**/*"],
|
|
"exclude": ["dist"],
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": true,
|
|
"paths": {
|
|
"@components/*": ["./src/components/*"],
|
|
"@layouts/*": ["./src/layouts/*"],
|
|
"@lib/*": ["./src/lib/*"],
|
|
"@pages/*": ["./src/pages/*"],
|
|
"@types/*": ["./src/types/*"],
|
|
},
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin",
|
|
},
|
|
],
|
|
},
|
|
}
|