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