yufan.me/tsconfig.json

16 lines
339 B
JSON
Raw Normal View History

2024-06-14 02:11:26 +08:00
{
"$schema": "https://json.schemastore.org/tsconfig.json",
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"baseUrl": ".",
"strict": true,
"target": "ESNext",
"module": "ESNext",
"strictNullChecks": true,
"paths": {
"@/*": ["src/*"]
},
"types": ["vite-plugin-arraybuffer/types"]
}
}