2024-11-15 16:01:33 +08:00
|
|
|
{
|
|
|
|
"$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"],
|
2024-11-15 16:01:33 +08:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"strict": true,
|
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"paths": {
|
|
|
|
"@/options": ["./options.ts"],
|
|
|
|
"@/*": ["src/*"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|