astro-uploader/tsconfig.json

16 lines
328 B
JSON
Raw Normal View History

2024-06-28 03:00:39 +08:00
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"target": "ESNext",
"module": "ESNext",
"strictNullChecks": true,
"paths": {
"@/options": ["./options.ts"],
"@/*": ["src/*"]
}
}
}