openvidu-server dashboard: upgrade to Angular 14

pull/772/head
pabloFuente 2022-12-01 16:24:54 +01:00
parent e993cc7eb3
commit 763c7cba26
5 changed files with 24204 additions and 23125 deletions

View File

@ -15,7 +15,6 @@
"index": "src/index.html", "index": "src/index.html",
"main": "src/main.ts", "main": "src/main.ts",
"tsConfig": "src/tsconfig.app.json", "tsConfig": "src/tsconfig.app.json",
"showCircularDependencies": false,
"polyfills": "src/polyfills.ts", "polyfills": "src/polyfills.ts",
"assets": [ "assets": [
"src/assets", "src/assets",
@ -108,7 +107,6 @@
} }
} }
}, },
"defaultProject": "openvidu-server-frontend",
"schematics": { "schematics": {
"@schematics/angular:component": { "@schematics/angular:component": {
"prefix": "app", "prefix": "app",

File diff suppressed because it is too large Load Diff

View File

@ -1,16 +1,16 @@
{ {
"dependencies": { "dependencies": {
"@angular/animations": "13.3.0", "@angular/animations": "14.2.12",
"@angular/cdk": "13.3.0", "@angular/cdk": "14.2.7",
"@angular/common": "13.3.0", "@angular/common": "14.2.12",
"@angular/compiler": "13.3.0", "@angular/compiler": "14.2.12",
"@angular/core": "13.3.0", "@angular/core": "14.2.12",
"@angular/flex-layout": "13.0.0-beta.38", "@angular/flex-layout": "14.0.0-beta.41",
"@angular/forms": "13.3.0", "@angular/forms": "14.2.12",
"@angular/material": "13.3.0", "@angular/material": "14.2.7",
"@angular/platform-browser": "13.3.0", "@angular/platform-browser": "14.2.12",
"@angular/platform-browser-dynamic": "13.3.0", "@angular/platform-browser-dynamic": "14.2.12",
"@angular/router": "13.3.0", "@angular/router": "14.2.12",
"core-js": "3.21.1", "core-js": "3.21.1",
"jquery": "3.6.0", "jquery": "3.6.0",
"openvidu-browser": "2.24.0", "openvidu-browser": "2.24.0",
@ -19,10 +19,10 @@
"zone.js": "0.11.5" "zone.js": "0.11.5"
}, },
"devDependencies": { "devDependencies": {
"@angular-devkit/build-angular": "13.3.0", "@angular-devkit/build-angular": "14.2.10",
"@angular/cli": "13.3.0", "@angular/cli": "14.2.10",
"@angular/compiler-cli": "13.3.0", "@angular/compiler-cli": "14.2.12",
"@angular/language-service": "13.3.0", "@angular/language-service": "14.2.12",
"@types/jasmine": "3.6.6", "@types/jasmine": "3.6.6",
"@types/node": "17.0.21", "@types/node": "17.0.21",
"codelyzer": "6.0.2", "codelyzer": "6.0.2",
@ -36,7 +36,7 @@
"protractor": "7.0.0", "protractor": "7.0.0",
"ts-node": "10.7.0", "ts-node": "10.7.0",
"tslint": "6.1.3", "tslint": "6.1.3",
"typescript": "4.5.4" "typescript": "4.8.4"
}, },
"license": "Apache-2.0", "license": "Apache-2.0",
"name": "frontend", "name": "frontend",

View File

@ -2,7 +2,7 @@
"extends": "../tsconfig.json", "extends": "../tsconfig.json",
"compilerOptions": { "compilerOptions": {
"outDir": "../out-tsc/spec", "outDir": "../out-tsc/spec",
"target": "es5", "target": "es2020",
"baseUrl": "", "baseUrl": "",
"types": [ "types": [
"jasmine", "jasmine",

View File

@ -8,7 +8,7 @@
"declaration": false, "declaration": false,
"moduleResolution": "node", "moduleResolution": "node",
"experimentalDecorators": true, "experimentalDecorators": true,
"target": "es2018", "target": "es2020",
"typeRoots": [ "typeRoots": [
"node_modules/@types" "node_modules/@types"
], ],