Initial CSE website content integration

This commit is contained in:
Neeldhara Misra 2026-06-01 16:31:25 +05:30
commit dfe66b9002
260 changed files with 83153 additions and 0 deletions

20
tsconfig.json Normal file
View file

@ -0,0 +1,20 @@
{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"strictNullChecks": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@code/*": ["./code/*"],
"@components/*": ["./src/components/*"],
"@layouts/*": ["./src/layouts/*"],
"@lib/*": ["./src/lib/*"]
},
"exactOptionalPropertyTypes": false,
"allowJs": true
},
"include": [".astro/types.d.ts", "**/*"],
"exclude": ["node_modules", ".vercel", ".netlify", "dist"]
}