Added small backend server to manage LLM chat & contact me form

This commit is contained in:
2026-02-19 14:07:40 +00:00
parent a1f7088b48
commit 95ea088a00
5 changed files with 210 additions and 23 deletions
+3 -4
View File
@@ -1,14 +1,13 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"outDir": "dist-server",
"rootDir": ".",
"strict": true,
"skipLibCheck": true,
"include": ["server.ts"]
"skipLibCheck": true
},
"include": ["server.ts"]
}