mirror of
https://codeberg.org/JasterV/jaster.xyz.git
synced 2026-04-26 18:10:01 +00:00
24 lines
483 B
JSON
24 lines
483 B
JSON
{
|
|
"extends": "astro/tsconfigs/strict",
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.d.ts",
|
|
"**/*.astro",
|
|
".astro/types.d.ts"
|
|
],
|
|
"exclude": ["node_modules", "dist"],
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@components/*": ["src/components/*"],
|
|
"@layouts/*": ["src/layouts/*"],
|
|
"@styles/*": ["src/styles/*"]
|
|
},
|
|
"verbatimModuleSyntax": true,
|
|
"plugins": [
|
|
{
|
|
"name": "@astrojs/ts-plugin"
|
|
}
|
|
]
|
|
}
|
|
}
|