{
  "compilerOptions": {
    "target": "ES2022",
    "module": "commonjs",
    "lib": ["ES2022"],
    "declaration": true,
    "strict": true,
    "noImplicitAny": true,
    "strictNullChecks": true,
    "noUnusedLocals": false,
    "noUnusedParameters": false,
    "esModuleInterop": true,
    "skipLibCheck": true,
    "forceConsistentCasingInFileNames": true,
    "resolveJsonModule": true,
    "experimentalDecorators": true,
    "emitDecoratorMetadata": true,
    "outDir": "./dist",
    "baseUrl": "./",
    "paths": {
      "@chatapp/database": ["backend/libs/database/src/index.ts"],
      "@chatapp/redis": ["backend/libs/redis/src/index.ts"],
      "@chatapp/types": ["backend/libs/types/src/index.ts"],
      "@chatapp/utils": ["backend/libs/utils/src/index.ts"],
      "@chatapp/constants": ["backend/libs/constants/src/index.ts"],
      "@chatapp/dtos": ["backend/libs/dtos/src/index.ts"]
    }
  },
  "exclude": ["node_modules", "dist"]
}