Initial commit, based off of the Panblog project.

This commit is contained in:
2026-08-29 18:33:14 -06:00
commit 548a9226e2
11 changed files with 611 additions and 0 deletions

13
tsconfig.json Normal file
View File

@@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"outDir": "dist",
"types": ["node", "express", "cors", "multer", "bcrypt", "escape-html", "mime"]
},
"include": ["src"],
}