{ "compilerOptions": { "module": "Node16", "declaration": false, "removeComments": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, "allowSyntheticDefaultImports": true, "target": "ES2021", "rootDir": "./src", "sourceMap": true, "outDir": "./dist", "incremental": true, "strict": true, "noImplicitAny": false, "strictNullChecks": true, "moduleResolution": "node16", "esModuleInterop": true, "skipLibCheck": true, "types": ["node"], "paths": { "@common/*": ["./src/common/*"], "@config/*": ["./src/config/*"], "@apps/*": ["./src/apps/*"], "@shared/*": ["./src/apps/shared-domain/*"], "@db/*": ["./src/prisma/*"] }, }, "include": ["src/**/*", "prisma/**/*"], "exclude": ["node_modules", "dist"] }