Files
teams/tsconfig.json
Ruslan Bakiev d9f1a066ce
All checks were successful
Build Docker Image / build (push) Successful in 2m8s
Migrate teams backend from Django to Express + Apollo Server + Prisma
Replace Django/Graphene stack with TypeScript Express server using Apollo Server v4
with 4 GraphQL endpoints (public/user/team/m2m) and Prisma ORM mapped to existing tables.
2026-03-09 09:26:41 +07:00

19 lines
422 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"outDir": "dist",
"rootDir": "src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"declaration": true,
"sourceMap": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}