56 lines
1.8 KiB
JSON
56 lines
1.8 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["ES2022"],
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": false,
|
|
"noImplicitThis": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@lilith/queue/core": ["./core/dist/index.d.ts"],
|
|
"@lilith/queue/core/*": ["./core/dist/*"],
|
|
"@lilith/queue/nestjs": ["./nestjs/dist/index.d.ts"],
|
|
"@lilith/queue/nestjs/*": ["./nestjs/dist/*"],
|
|
"@lilith/queue/ml": ["./ml/dist/index.d.ts"],
|
|
"@lilith/queue/ml/*": ["./ml/dist/*"],
|
|
"@lilith/queue/reporting": ["./reporting/dist/index.d.ts"],
|
|
"@lilith/queue/reporting/*": ["./reporting/dist/*"],
|
|
"@lilith/queue/bull-adapter": ["./bull-adapter/dist/index.d.ts"],
|
|
"@lilith/queue/bull-adapter/*": ["./bull-adapter/dist/*"],
|
|
"@lilith/queue/admin/backend": ["./admin/backend/dist/index.d.ts"],
|
|
"@lilith/queue/admin/backend/*": ["./admin/backend/dist/*"],
|
|
"@lilith/queue/admin/frontend": ["./admin/frontend/dist/index.d.ts"],
|
|
"@lilith/queue/admin/frontend/*": ["./admin/frontend/dist/*"]
|
|
}
|
|
}
|
|
}
|