eleboog-astro/tsconfig.json

15 lines
No EOL
314 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"strictNullChecks": true,
"allowJs": true,
"types": ["vite/client"],
"paths": {
"@/*": ["./*"],
"@c/*": ["./src/components/*"],
"@l/*": ["./lib/*"],
}
}
}