1
0
mirror of https://github.com/redis/node-redis.git synced 2025-09-20 04:22:04 +03:00
Files
node-redis/tsconfig.base.json
Nikolay Karadzhov 4a5f879ec9 fix(client): bring disableClientInfo option back (#2959)
* fix(client): bring disableClientInfo option back

It disappeared in v5

fixes #2958
2025-05-20 15:15:09 +03:00

22 lines
445 B
JSON

{
"compilerOptions": {
"lib": ["ES2023"],
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2022",
"strict": true,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"skipLibCheck": true,
"composite": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"allowJs": true,
"resolveJsonModule": true
}
}