transitioned from astro to react

This commit is contained in:
Peter Wood
2025-06-04 21:03:32 -04:00
parent 570ed2d1b4
commit 52547578a7
32 changed files with 2631 additions and 4865 deletions

30
server/tsconfig.json Normal file
View File

@@ -0,0 +1,30 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "../dist/server",
"rootDir": ".",
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"types": [
"node"
],
"resolveJsonModule": true,
"allowJs": true
},
"include": [
"**/*"
],
"exclude": [
"node_modules",
"../dist",
"../src"
]
}