Initial commit from template

This commit is contained in:
StackClass
2025-12-31 03:33:51 +00:00
commit cc1551f878
16 changed files with 3094 additions and 0 deletions

16
tsconfig.json Normal file
View File

@@ -0,0 +1,16 @@
{
"compilerOptions": {
"types": ["mocha"],
"lib": ["es2020"],
"target": "es2020",
"module": "commonjs",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
"rootDir": "."
},
"include": ["tests/**/*", "migrations/**/*"]
}