openvidu-angular-library: Updated to Angular 10
Updated tutorial to Angular 10 to match with the openvidu-angular library
This commit is contained in:
parent
93357b263b
commit
557f10ce96
@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"extends": "../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../out-tsc/app",
|
||||
"module": "commonjs",
|
||||
|
||||
5525
openvidu-library-angular/package-lock.json
generated
5525
openvidu-library-angular/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -11,39 +11,39 @@
|
||||
},
|
||||
"private": true,
|
||||
"dependencies": {
|
||||
"@angular/animations": "9.0.6",
|
||||
"@angular/common": "9.0.6",
|
||||
"@angular/compiler": "9.0.6",
|
||||
"@angular/core": "9.0.6",
|
||||
"@angular/forms": "9.0.6",
|
||||
"@angular/platform-browser": "9.0.6",
|
||||
"@angular/platform-browser-dynamic": "9.0.6",
|
||||
"@angular/router": "9.0.6",
|
||||
"@angular/animations": "10.0.3",
|
||||
"@angular/common": "10.0.3",
|
||||
"@angular/compiler": "10.0.3",
|
||||
"@angular/core": "10.0.3",
|
||||
"@angular/forms": "10.0.3",
|
||||
"@angular/platform-browser": "10.0.3",
|
||||
"@angular/platform-browser-dynamic": "10.0.3",
|
||||
"@angular/router": "10.0.3",
|
||||
"core-js": "3.6.4",
|
||||
"openvidu-angular": "2.15.0",
|
||||
"rxjs": "6.5.4",
|
||||
"tslib": "1.11.1",
|
||||
"zone.js": "0.10.2"
|
||||
"tslib": "^2.0.0",
|
||||
"zone.js": "0.10.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@angular-devkit/build-angular": "0.900.6",
|
||||
"@angular/cli": "9.0.6",
|
||||
"@angular/compiler-cli": "9.0.6",
|
||||
"@angular/language-service": "9.0.6",
|
||||
"@angular-devkit/build-angular": "0.1000.2",
|
||||
"@angular/cli": "10.0.2",
|
||||
"@angular/compiler-cli": "10.0.3",
|
||||
"@angular/language-service": "10.0.3",
|
||||
"@types/node": "13.9.1",
|
||||
"@types/jasmine": "3.5.9",
|
||||
"@types/jasminewd2": "2.0.8",
|
||||
"codelyzer": "5.2.1",
|
||||
"jasmine-core": "3.5.0",
|
||||
"jasmine-spec-reporter": "4.2.1",
|
||||
"karma": "4.4.1",
|
||||
"karma-chrome-launcher": "3.1.0",
|
||||
"karma-coverage-istanbul-reporter": "2.1.1",
|
||||
"karma-jasmine": "3.1.1",
|
||||
"karma-jasmine-html-reporter": "1.5.2",
|
||||
"protractor": "5.4.3",
|
||||
"codelyzer": "^6.0.0",
|
||||
"jasmine-core": "~3.5.0",
|
||||
"jasmine-spec-reporter": "~5.0.0",
|
||||
"karma": "~5.0.0",
|
||||
"karma-chrome-launcher": "~3.1.0",
|
||||
"karma-coverage-istanbul-reporter": "~3.0.2",
|
||||
"karma-jasmine": "~3.3.0",
|
||||
"karma-jasmine-html-reporter": "^1.5.0",
|
||||
"protractor": "~7.0.0",
|
||||
"ts-node": "8.6.2",
|
||||
"tslint": "6.1.0",
|
||||
"typescript": "3.7.5"
|
||||
"tslint": "~6.1.0",
|
||||
"typescript": "3.9.6"
|
||||
}
|
||||
}
|
||||
|
||||
BIN
openvidu-library-angular/src/assets/images/poster.png
Normal file
BIN
openvidu-library-angular/src/assets/images/poster.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.2 KiB |
@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"extends": "../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../out-tsc/app",
|
||||
"types": []
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
{
|
||||
"extends": "../tsconfig.json",
|
||||
"extends": "../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "../out-tsc/spec",
|
||||
"types": [
|
||||
|
||||
21
openvidu-library-angular/tsconfig.base.json
Normal file
21
openvidu-library-angular/tsconfig.base.json
Normal file
@ -0,0 +1,21 @@
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./",
|
||||
"module": "es2020",
|
||||
"outDir": "./dist/out-tsc",
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
"moduleResolution": "node",
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"target": "es5",
|
||||
"typeRoots": [
|
||||
"node_modules/@types"
|
||||
],
|
||||
"lib": [
|
||||
"es2017",
|
||||
"dom"
|
||||
]
|
||||
}
|
||||
}
|
||||
@ -1,21 +1,20 @@
|
||||
/*
|
||||
This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience.
|
||||
It is not intended to be used to perform a compilation.
|
||||
|
||||
To learn more about this file see: https://angular.io/config/solution-tsconfig.
|
||||
*/
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./",
|
||||
"module": "esnext",
|
||||
"outDir": "./dist/out-tsc",
|
||||
"sourceMap": true,
|
||||
"declaration": false,
|
||||
"moduleResolution": "node",
|
||||
"emitDecoratorMetadata": true,
|
||||
"experimentalDecorators": true,
|
||||
"target": "es5",
|
||||
"typeRoots": [
|
||||
"node_modules/@types"
|
||||
],
|
||||
"lib": [
|
||||
"es2017",
|
||||
"dom"
|
||||
]
|
||||
}
|
||||
}
|
||||
"files": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./src/tsconfig.app.json"
|
||||
},
|
||||
{
|
||||
"path": "./src/tsconfig.spec.json"
|
||||
},
|
||||
{
|
||||
"path": "./e2e/tsconfig.e2e.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
@ -72,7 +72,6 @@
|
||||
"no-trailing-whitespace": true,
|
||||
"no-unnecessary-initializer": true,
|
||||
"no-unused-expression": true,
|
||||
"no-use-before-declare": true,
|
||||
"no-var-keyword": true,
|
||||
"object-literal-sort-keys": false,
|
||||
"one-line": [
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user