mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* 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
47 lines
No EOL
876 B
JSON
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",
|
|
]
|
|
} |