From dd6d14f81b86cadd14e97d99609fa9ee0a27082c Mon Sep 17 00:00:00 2001 From: Suren K Date: Wed, 1 Oct 2025 17:01:05 -0500 Subject: [PATCH] fix: Add missing tslib dependency for TypeScript decorators - Add tslib@^2.6.0 to dependencies in package.json - tslib is required for TypeScript decorators like @Component - Resolves 'module tslib cannot be found' error - Critical runtime library for Angular decorators - Fixes TypeScript compilation in Docker build --- examples/basicauthentication/ui.resources/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/basicauthentication/ui.resources/package.json b/examples/basicauthentication/ui.resources/package.json index b91058b1..e653eb46 100644 --- a/examples/basicauthentication/ui.resources/package.json +++ b/examples/basicauthentication/ui.resources/package.json @@ -24,6 +24,7 @@ "@angular/platform-browser-dynamic": "^17.0.0", "@angular/router": "^17.0.0", "rxjs": "^7.8.0", + "tslib": "^2.6.0", "zone.js": "^0.14.0" }, "devDependencies": {