Files
heretek-openclaw-core/tsconfig.json
T
John Doe 7d3fe106f6 feat(core): Security and infrastructure improvements
- Add @types/node for improved TypeScript support
- Integrate SQL injection prevention in pgvector-optimizer
  - All table and column identifiers now properly escaped
  - Applies to index creation and similarity search queries
- Integrate centralized Redis client in redis-ttl-manager
  - Replace reference implementations with actual Redis operations
  - setMemoryWithTTL() now uses Redis SETEX command
  - extendTTL() now queries and extends actual TTL
  - getCacheHealth() now queries real Redis INFO metrics
  - All functions use centralized auth, TLS, and reconnection logic
- Add audit-cleanup.sh script for automated log cleanup
  - Supports --dry-run and --verbose flags
  - Works in both Docker and bare metal environments
- Add tsconfig.json for TypeScript compiler configuration

Security improvements prevent SQL injection and centralize Redis
connection management for better reliability and maintainability.
2026-04-04 00:42:31 -04:00

17 lines
419 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"lib": ["ES2022"],
"types": ["node", "vitest/globals"],
"esModuleInterop": true,
"skipLibCheck": true,
"strict": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true
},
"include": ["lib/**/*", "skills/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist"]
}