eleboog-astro/tsconfig.json

16 lines
No EOL
337 B
JSON

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