From 4861db7d123660a97f7aebdb1f89d36237d018b2 Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Thu, 13 Mar 2025 10:11:32 +0000 Subject: [PATCH] chore: version 20.0.0-next.1 --- ponyracer/package.json | 4 ++-- .../src/app/{app.component.html => app.component.ng.html} | 0 ponyracer/src/app/app.component.ts | 2 +- ponyracer/tsconfig.json | 4 +--- 4 files changed, 4 insertions(+), 6 deletions(-) rename ponyracer/src/app/{app.component.html => app.component.ng.html} (100%) diff --git a/ponyracer/package.json b/ponyracer/package.json index d48f7f203..d5cfa9489 100644 --- a/ponyracer/package.json +++ b/ponyracer/package.json @@ -22,8 +22,8 @@ "zone.js": "~0.15.0" }, "devDependencies": { - "@angular/build": "^20.0.0-next.0", - "@angular/cli": "^20.0.0-next.0", + "@angular/build": "^20.0.0-next.1", + "@angular/cli": "^20.0.0-next.1", "@angular/compiler-cli": "^20.0.0-next.0", "@types/jasmine": "~5.1.0", "jasmine-core": "~5.6.0", diff --git a/ponyracer/src/app/app.component.html b/ponyracer/src/app/app.component.ng.html similarity index 100% rename from ponyracer/src/app/app.component.html rename to ponyracer/src/app/app.component.ng.html diff --git a/ponyracer/src/app/app.component.ts b/ponyracer/src/app/app.component.ts index 3547759d4..addd32d3b 100644 --- a/ponyracer/src/app/app.component.ts +++ b/ponyracer/src/app/app.component.ts @@ -4,7 +4,7 @@ import { RouterOutlet } from '@angular/router'; @Component({ selector: 'app-root', imports: [RouterOutlet], - templateUrl: './app.component.html', + templateUrl: './app.component.ng.html', styleUrl: './app.component.css' }) export class AppComponent { diff --git a/ponyracer/tsconfig.json b/ponyracer/tsconfig.json index 5525117c6..56aa7b014 100644 --- a/ponyracer/tsconfig.json +++ b/ponyracer/tsconfig.json @@ -11,12 +11,10 @@ "noFallthroughCasesInSwitch": true, "skipLibCheck": true, "isolatedModules": true, - "esModuleInterop": true, "experimentalDecorators": true, - "moduleResolution": "bundler", "importHelpers": true, "target": "ES2022", - "module": "ES2022" + "module": "preserve" }, "angularCompilerOptions": { "enableI18nLegacyMessageIdFormat": false,