Initial commit: Full project structure

- Backend: NestJS with Docker
- Frontend: Next.js with Docker
- Nginx configuration for reverse proxy
- PostgreSQL setup
- Docker compose for orchestration
- Development environment configuration
This commit is contained in:
2026-04-23 15:33:11 +03:30
commit 26bd35ae3c
94 changed files with 5627 additions and 0 deletions

42
frontend/tsconfig.json Normal file
View File

@@ -0,0 +1,42 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": [
"./src/*"
] // 👈 CHANGED: Now points to src folder
}
},
"include": [
"next-env.d.ts",
"src/**/*.ts", // 👈 CHANGED: Looks in src folder
"src/**/*.tsx", // 👈 CHANGED: Looks in src folder
"src/**/*.mts", // 👈 CHANGED: Looks in src folder
".next/types/**/*.ts",
".next/dev/types/**/*.ts"
, "tailwind.config.ts" ],
"exclude": [
"node_modules"
]
}