- Standardized string quotes in pnpm-lock.yaml for consistency. - Updated TypeScript configuration files to include type definitions and type roots for better type management. - Enhanced SalesforcePubSubSubscriber class with replay corruption recovery logic and refactored subscription handling for improved reliability. - Removed unused backup file for dashboard layout to streamline the codebase.
33 lines
939 B
JSON
33 lines
939 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2024",
|
|
"lib": ["ES2024"],
|
|
"module": "Node16",
|
|
"moduleResolution": "node16",
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@customer-portal/shared": ["../../packages/shared/dist/index"],
|
|
"@customer-portal/shared/*": ["../../packages/shared/dist/*"]
|
|
},
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"strictBindCallApply": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": false,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"skipLibCheck": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"strictPropertyInitialization": false,
|
|
"types": ["node"],
|
|
"typeRoots": ["./node_modules/@types"]
|
|
}
|
|
}
|