yufan.me/tsconfig.json

18 lines
395 B
JSON
Raw Normal View History

{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "astro/tsconfigs/strict",
2024-12-03 21:33:19 +08:00
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"target": "ESNext",
"module": "ESNext",
"strictNullChecks": true,
"paths": {
"@/options": ["./options.ts"],
"@/*": ["src/*"]
}
}
}