Added init website for gitea-mirror

This commit is contained in:
Arunavo Ray
2025-07-08 19:29:26 +05:30
parent 4958b8b9ec
commit bb1842bc10
27 changed files with 1745 additions and 0 deletions

20
www/tsconfig.json Normal file
View File

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