gcx/backend/services/auth-service/tsconfig.json

22 lines
536 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "ES2021",
"lib": ["ES2021"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"declaration": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@genex/common": ["../../packages/common/src"],
"@genex/kafka-client": ["../../packages/kafka-client/src"]
}
},
"include": ["src/**/*"]
}