vhAstro-Theme/tsconfig.json
2025-04-02 19:16:48 +08:00

19 lines
271 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"strictNullChecks": true,
"jsx": "preserve",
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
".astro/types.d.ts",
"**/*"
],
"exclude": [
"dist"
]
}