Files
sdi/apps/worker/tsconfig.json
austindebest 38f56f7735 Fix TypeScript compilation errors
- Remove unused imports (IsString, Queue)
- Remove unused variables in services.service.ts
- Add skipLibCheck to worker tsconfig
- Set declaration: false in API tsconfig to avoid type portability errors
2026-04-20 00:55:20 +01:00

15 lines
347 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"skipLibCheck": true,
"paths": {
"@sdi/database": ["../../packages/database/src"],
"@sdi/shared-types": ["../../packages/shared-types/src"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}