update ng from 14 to 15

This commit is contained in:
Igor Hrenowitsch Propisnov 2024-03-10 18:01:08 +01:00
parent 968fe41ca5
commit 87978e06be
4 changed files with 3682 additions and 3485 deletions

File diff suppressed because it is too large Load Diff

View File

@ -10,16 +10,16 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@angular/animations": "^14.3.0", "@angular/animations": "^15.2.10",
"@angular/cdk": "^14.2.7", "@angular/cdk": "^14.2.7",
"@angular/common": "^14.3.0", "@angular/common": "^15.2.10",
"@angular/compiler": "^14.3.0", "@angular/compiler": "^15.2.10",
"@angular/core": "^14.3.0", "@angular/core": "^15.2.10",
"@angular/forms": "^14.3.0", "@angular/forms": "^15.2.10",
"@angular/material": "^14.2.7", "@angular/material": "^14.2.7",
"@angular/platform-browser": "^14.3.0", "@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^14.3.0", "@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^14.3.0", "@angular/router": "^15.2.10",
"bootstrap": "^5.2.2", "bootstrap": "^5.2.2",
"bootstrap-icons": "^1.9.1", "bootstrap-icons": "^1.9.1",
"rxjs": "~7.4.0", "rxjs": "~7.4.0",
@ -27,9 +27,9 @@
"zone.js": "~0.11.4" "zone.js": "~0.11.4"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "^14.2.13", "@angular-devkit/build-angular": "^15.2.10",
"@angular/cli": "^14.2.13", "@angular/cli": "^15.2.10",
"@angular/compiler-cli": "^14.3.0", "@angular/compiler-cli": "^15.2.10",
"@types/jasmine": "~3.10.0", "@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1", "@types/node": "^12.11.1",
"jasmine-core": "~3.10.0", "jasmine-core": "~3.10.0",

View File

@ -7,20 +7,8 @@ import {
platformBrowserDynamicTesting platformBrowserDynamicTesting
} from '@angular/platform-browser-dynamic/testing'; } from '@angular/platform-browser-dynamic/testing';
declare const require: {
context(path: string, deep?: boolean, filter?: RegExp): {
<T>(id: string): T;
keys(): string[];
};
};
// First, initialize the Angular testing environment. // First, initialize the Angular testing environment.
getTestBed().initTestEnvironment( getTestBed().initTestEnvironment(
BrowserDynamicTestingModule, BrowserDynamicTestingModule,
platformBrowserDynamicTesting(), platformBrowserDynamicTesting(),
); );
// Then we find all the tests.
const context = require.context('./', true, /\.spec\.ts$/);
// And load the modules.
context.keys().map(context);

View File

@ -16,12 +16,13 @@
"experimentalDecorators": true, "experimentalDecorators": true,
"moduleResolution": "node", "moduleResolution": "node",
"importHelpers": true, "importHelpers": true,
"target": "es2020", "target": "ES2022",
"module": "es2020", "module": "es2020",
"lib": [ "lib": [
"es2020", "es2020",
"dom" "dom"
] ],
"useDefineForClassFields": false
}, },
"angularCompilerOptions": { "angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false, "enableI18nLegacyMessageIdFormat": false,