chore: initialize SkyMoney (api + prisma + docker-compose) ( still in progress

This commit is contained in:
2025-11-07 22:52:33 -06:00
commit f4160b91db
13 changed files with 2014 additions and 0 deletions

15
api/tsconfig.json Normal file
View File

@@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"rootDir": "src",
"outDir": "dist",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["node"]
},
"include": ["src"],
"exclude": ["node_modules", "dist", "prisma.config.ts"]
}