- **tsconfig.json:** Align with the new property formats to avoid build issues:
```json
/* angular/tsconfig.json */
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"skipLibCheck": true,
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "dom", "esnext.disposable"],
"paths": {},
"useDefineForClassFields": false
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false
}
}
```
For more details, see the [Angular version reference](https://angular.dev/reference/versions#actively-supported-versions).
## PRO
> Please check the **Open-Source (Framework)** section before reading this section. The listed topics might affect your application and you might need to take care of them.