ToolJet/server/tsconfig.json
Adish M e06abc4b5b
feat(otel): Add request-based active and concurrent user metrics tracking (#14330)
* feat(otel): Add request-based active and concurrent user metrics tracking

* remove legacy active users tracking and related metrics

* Enhance active user tracking with configurable activity window and proactive cleanup

* add organization_id to user_sessions and update tracing imports

* update session termination logic to use user object and remove organization_id from user_sessions

* remove session metrics decrement logic from terminateAllSessions method

* remove session count logic from terminateAllSessions method
2025-10-29 12:57:36 +05:30

47 lines
No EOL
876 B
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"types": [
"node",
"rxjs"
],
"resolveJsonModule": true,
"module": "commonjs",
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"target": "es2019",
"allowJs": true,
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"incremental": true,
"skipLibCheck": true,
"paths": {
"@ee/*": [
"ee/*"
],
"@entities/*": [
"src/entities/*"
],
"@dto/*": [
"src/dto/*"
],
"@modules/*": [
"src/modules/*"
],
"@helpers/*": [
"src/helpers/*"
],
"@otel/*": [
"src/otel/*"
],
},
},
"exclude": [
"node_modules",
"dist",
]
}