diff --git a/ponyracer/package.json b/ponyracer/package.json index 4a1d786..ca21357 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -18,15 +18,15 @@ "@angular/platform-browser": "^20.0.0-next.0", "@angular/platform-server": "^20.0.0-next.0", "@angular/router": "^20.0.0-next.0", - "@angular/ssr": "^20.0.0-next.6", + "@angular/ssr": "^20.0.0-next.7", "express": "^5.1.0", "rxjs": "~7.8.0", "tslib": "^2.3.0", "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/build": "^20.0.0-next.6", - "@angular/cli": "^20.0.0-next.6", + "@angular/build": "^20.0.0-next.7", + "@angular/cli": "^20.0.0-next.7", "@angular/compiler-cli": "^20.0.0-next.0", "@types/express": "^5.0.1", "@types/jasmine": "~5.1.0", diff --git a/ponyracer/src/app/app.config.ts b/ponyracer/src/app/app.config.ts index a9af518..969812a 100644 --- a/ponyracer/src/app/app.config.ts +++ b/ponyracer/src/app/app.config.ts @@ -1,9 +1,13 @@ -import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; +import { ApplicationConfig, provideBrowserGlobalErrorListeners, provideZoneChangeDetection } from '@angular/core'; import { provideRouter } from '@angular/router'; import { routes } from './app.routes'; import { provideClientHydration, withEventReplay } from '@angular/platform-browser'; export const appConfig: ApplicationConfig = { - providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideClientHydration(withEventReplay())] + providers: [ + provideBrowserGlobalErrorListeners(), + provideZoneChangeDetection({ eventCoalescing: true }), + provideRouter(routes), provideClientHydration(withEventReplay()) + ] }; diff --git a/ponyracer/tsconfig.app.json b/ponyracer/tsconfig.app.json index 02dee29..ef19921 100644 --- a/ponyracer/tsconfig.app.json +++ b/ponyracer/tsconfig.app.json @@ -3,7 +3,6 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "composite": true, "outDir": "./out-tsc/app", "types": [ "node" diff --git a/ponyracer/tsconfig.json b/ponyracer/tsconfig.json index dcc391d..e4955f2 100644 --- a/ponyracer/tsconfig.json +++ b/ponyracer/tsconfig.json @@ -25,10 +25,10 @@ "files": [], "references": [ { - "path": "tsconfig.app.json" + "path": "./tsconfig.app.json" }, { - "path": "tsconfig.spec.json" + "path": "./tsconfig.spec.json" } ] } diff --git a/ponyracer/tsconfig.spec.json b/ponyracer/tsconfig.spec.json index 04e0076..04df34c 100644 --- a/ponyracer/tsconfig.spec.json +++ b/ponyracer/tsconfig.spec.json @@ -3,7 +3,6 @@ { "extends": "./tsconfig.json", "compilerOptions": { - "composite": true, "outDir": "./out-tsc/spec", "types": [ "jasmine"