mirror of
https://github.com/adnaan-worker/adnify.git
synced 2026-09-01 15:12:10 +08:00
907f2a7503
- 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.
23 lines
498 B
JSON
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/**/*"]
|
|
}
|