Files
adnify/tsconfig.shared.json
T
kerwin 907f2a7503 refactor(agent): replace CacheService with fileCacheService for file caching operations
- Updated Agent class to utilize fileCacheService for managing file cache instead of the previous CacheService.
- Refactored methods to ensure consistent file cache handling across the Agent class.
- Simplified file cache operations by removing redundant code and improving clarity.
- Adjusted related executor functions to align with the new file cache service integration.
2026-02-06 11:24:26 +08:00

23 lines
498 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"module": "ESNext",
"moduleResolution": "node",
"skipLibCheck": true,
"resolveJsonModule": true,
"isolatedModules": true,
"declaration": true,
"strict": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"],
"@shared/*": ["src/shared/*"]
},
"types": ["node"]
},
"include": ["src/shared/**/*"]
}