ieeeucsd-org/tsconfig.json
2025-04-26 15:26:16 -07:00

16 lines
304 B
JSON

{
"extends": "astro/tsconfigs/strict",
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["dist"],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react",
"esModuleInterop": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./src/*"
]
}
}
}